标签:style param microsoft blog ring int com merge sof
1 int[] numbers = { 1, 2, 3, 4 }; 2 string[] words = { "one", "two", "three" }; 3 4 var numbersAndWords = numbers.Zip(words, (first, second) => first + " " + second); 5 6 foreach (var item in numbersAndWords) 7 Console.WriteLine(item);
以数列内容少的为主要参考
public static IEnumerable<TResult> Zip<TFirst, TSecond, TResult>( this IEnumerable<TFirst> first, IEnumerable<TSecond> second, Func<TFirst,?TSecond,?TResult> resultSelector )
The first sequence to merge.
The second sequence to merge.
A function that specifies how to merge the elements from the two sequences.
标签:style param microsoft blog ring int com merge sof
原文地址:http://www.cnblogs.com/ants-double/p/6002276.html