更新:2007 年 11 月
错误消息
关键字“void”不能用于此上下文中编译器检测到无效的
下面的示例生成 CS1547:
复制代码 | |
---|---|
// CS1547.cs public class MyClass { void BadMethod() { void i; // CS1547, cannot have variables of type void } public static void Main() { } } |
更新:2007 年 11 月
编译器检测到无效的
下面的示例生成 CS1547:
复制代码 | |
---|---|
// CS1547.cs public class MyClass { void BadMethod() { void i; // CS1547, cannot have variables of type void } public static void Main() { } } |