Sdílet prostřednictvím


Compilerfehler CS0673

Aktualisiert: November 2007

Fehlermeldung

System.Void kann nicht in C# verwendet werden. Sie können das void-Typobjekt mit typeof(void) abfragen.
System.Void cannot be used from C# -- use typeof(void) to get the void type object.

System.Void kann in C# nicht verwendet werden.

Im folgenden Beispiel wird CS0673 generiert:

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