更新:2007 年 11 月
错误消息
常数“variable”无法标记为 static如果变量是
下面的示例生成 CS0504:
复制代码 | |
---|---|
// CS0504.cs namespace x { abstract public class clx { static const int i = 0; // CS0504, cannot be both static and const abstract public void f(); } } |
更新:2007 年 11 月
如果变量是
下面的示例生成 CS0504:
复制代码 | |
---|---|
// CS0504.cs namespace x { abstract public class clx { static const int i = 0; // CS0504, cannot be both static and const abstract public void f(); } } |