共用方式為


編譯器錯誤 CS0673

更新:2007 年 11 月

錯誤訊息

無法從 C# 使用 System.Void -- 使用 typeof(void) 以取得 void 型別物件。

System.Void 不能用於 C#。

下列範例會產生 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);
   }
}