Leggere in inglese

Condividi tramite


Errore del compilatore CS0744

È prevista la parola chiave contestuale 'equals'

Il percorso per una clausola join è join...in...on...equals, come mostrato nell'esempio:

C#
var query = from x in array1  
            join y in array2 on x equals y  
            select x;  

Per correggere l'errore

  1. Aggiungere la parola chiave equals alla clausola join .

Esempio

Il codice seguente genera l'errore CS0744:

C#
// cs0744.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 on x y // CS0744  
                select x;  
        return 1;  
    }  
}  

Vedi anche