更新:2007 年 11 月
错误消息
参数类型 void 无效指定 void 指针以外的
下面的示例生成 CS1536:
复制代码 | |
---|---|
// CS1536.cs class a { public static int x( void ) // CS1536 // try the following line instead // public static int x() { return 0; } public static void Main() { } } |
更新:2007 年 11 月
指定 void 指针以外的
下面的示例生成 CS1536:
复制代码 | |
---|---|
// CS1536.cs class a { public static int x( void ) // CS1536 // try the following line instead // public static int x() { return 0; } public static void Main() { } } |