瀏覽代碼

Fix AsyncQueryable.Zip.

Bart De Smet 6 年之前
父節點
當前提交
b49a479aab
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Ix.NET/Source/System.Linq.Async.Queryable/System/Linq/AsyncQueryable.cs

+ 1 - 1
Ix.NET/Source/System.Linq.Async.Queryable/System/Linq/AsyncQueryable.cs

@@ -48,7 +48,7 @@ namespace System.Linq
             if (second == null)
                 throw new ArgumentNullException(nameof(second));
 
-            return first.Provider.CreateQuery<(TFirst, TSecond)>(Expression.Call(s_Zip__TFirst_TSecond__2__0(typeof(TFirst), typeof(TSecond)), first.Expression, GetSourceExpression(second)));
+            return first.Provider.CreateQuery<(TFirst, TSecond)>(Expression.Call(Zip__TFirst_TSecond__2__0(typeof(TFirst), typeof(TSecond)), first.Expression, GetSourceExpression(second)));
         }
 #endif