İngilizce dilinde oku

Aracılığıyla paylaş


Derleyici Hatası CS1023

Embedded deyimi bir bildirim veya etiketli deyim olamaz

Bir if deyiminin ardından gelen deyimler gibi eklenmiş bir deyim, ne bildirim ne de etiketli deyimler içerebilir.

Aşağıdaki örnek iki kez CS1023 oluşturur:

// CS1023.cs  
public class a  
{  
   public static void Main()  
   {  
      if (1)  
         int i;      // CS1023, declaration is not valid here  
  
      if (1)  
         xx : i++;   // CS1023, labeled statement is not valid here  
   }  
}