google code prettify

2015年6月2日 星期二

[LINQ] Intersect-Basic 相同的找出來

[LINQ] Intersect-Basic 相同的找出來



public void Linq50() {
    int[] numbersA = { 0, 2, 4, 5, 6, 8, 9 };
    int[] numbersB = { 1, 3, 5, 7, 8 };
 
    var commonNumbers = numbersA.Intersect(numbersB);
 
    Console.WriteLine("Common numbers shared by both arrays:");
    foreach (var n in commonNumbers) {
        Console.WriteLine(n);
    }
}


----------------output-----------------
Common numbers shared by both arrays:
5
8

沒有留言:

張貼留言