編譯器錯誤 CS0743
必須是內容關鍵字 'on'
join
子句的模式是 join
...in
...on
...equals
,如下列範例所示:
C#
var query = from x in array1
join y in array2 on x equals y
select x;
- 請將
on
關鍵字加入join
子句。
下列程式碼會產生 CS0743:
C#
// cs0743.cs
using System;
using System.Linq;
public class C
{
public static int Main()
{
int[] array1 = { 1, 2, 3, 4, 5, 6 };
int[] array2 = { 5, 6, 7, 8, 9 };
var c = from x in array1
join y in array2 x equals y // CS0743
select x;
return 1;
}
}