使用英语阅读

通过


编译器错误 CS0673

无法从 C# 使用 System.Void -- 使用 typeof(void) 获取 void 类型对象。

不能在 C# 中使用System.Void

以下示例生成 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);  
   }  
}