Errore del compilatore CS0673

Aggiornamento: novembre 2007

Messaggio di errore

Impossibile utilizzare System.Void da C#. Utilizzare typeof(void) per ottenere l'oggetto di tipo void.
System.Void cannot be used from C# -- use typeof(void) to get the void type object.

Non è possibile utilizzare System.Void in C#.

Il seguente codice di esempio genera l'errore 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);
   }
}