Leer en inglés

Compartir a través de


Error del compilador CS0673

System.Void no se puede usar en C#: use typeof(void) para obtener el objeto de tipo void.

System.Void no se puede usar en C#.

El ejemplo siguiente genera la advertencia CS0673:

// 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);  
   }  
}