Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 442 Bytes

3.0-preview2_System.Linq.md

File metadata and controls

14 lines (11 loc) · 442 Bytes

System.Linq

 namespace System.Linq {
     public static class Enumerable {
-        public static IEnumerable<ValueTuple<TFirst, TSecond>> Zip<TFirst, TSecond>(this IEnumerable<TFirst> first, IEnumerable<TSecond> second);

     }
     public static class Queryable {
-        public static IQueryable<ValueTuple<TFirst, TSecond>> Zip<TFirst, TSecond>(this IQueryable<TFirst> source1, IEnumerable<TSecond> source2);

     }
 }