google code prettify

2015年6月2日 星期二

[LINQ] Except-Basic

[LINQ] Except-Basic



public void Linq52() {
    int[] numbersA = { 0, 2, 4, 5, 6, 8, 9 };
    int[] numbersB = { 1, 3, 5, 7, 8 };
 
    IEnumerable<int> aOnlyNumbers = numbersA.Except(numbersB);
 
    Console.WriteLine("Numbers in first array but not second array:");
    foreach (var n in aOnlyNumbers) {
        Console.WriteLine(n);
    }
}


output:
Numbers in first array but not second array:
0
2
4
6
9

沒有留言:

張貼留言