更新:2007 年 11 月
错误消息
“member”不能是外部的,也无法声明主体当类成员被标记为
下面的示例生成 CS0179:
复制代码 | |
---|---|
// CS0179.cs public class MyClass { public extern int ExternMethod(int aa) // CS0179 { return 0; } // try the following line instead // public extern int ExternMethod(int aa); public static void Main() { } } |