使用英语阅读

通过


编译器错误 CS1547

关键字 "void" 不能在此上下文中使用

编译器检测到无效的 void 关键字使用。

下面的示例生成 CS1547:

// CS1547.cs  
public class MyClass  
{  
   void BadMethod()  
   {  
      void i;   // CS1547, cannot have variables of type void  
   }  
  
   public static void Main()  
   {  
   }  
}