Функция объединяет две последовательности.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
using System; //добавить ссылку using System.Linq; class Program { public static int Main() { int[] ara1 = new int[] { 1, 2, 3, 4, 5}; string[] ara2 = new string[] { "one", "two", "three", "four", "five" }; var query = ara1.Zip(ara2, (a, b) => a + " " + b); foreach(var i in query) { Console.WriteLine("{0} ", i); } Console.ReadKey(); return 0; } } |
1 2 3 4 5 |
1 one 2 two 3 three 4 four 5 five |