İngilizce dilinde oku

Aracılığıyla paylaş


Derleyici Hatası CS0673

System.Void C# öğesinden kullanılamaz-- void türü nesnesini almak için typeof(void) kullanın.

System.Void , C# dilinde kullanılamaz.

Aşağıdaki örnek CS0673 oluşturur:

// CS0673.cs  
class MyClass  
{  
   public static void Main()  
   {  
      System.Type t = typeof(System.Void);   // CS0673  
      // try the following line instead  
      // System.Type t = typeof(void);  
   }  
}