更新:2007 年 11 月
错误消息
命名空间并不直接包含诸如字段或方法之类的成员在
示例
下面的示例生成 CS0116:
复制代码 | |
---|---|
// CS0116.cs namespace x { using System; // method must be in class/struct void Method(string str) // CS0116 { Console.WriteLine(str); } } |
更新:2007 年 11 月
在
下面的示例生成 CS0116:
复制代码 | |
---|---|
// CS0116.cs namespace x { using System; // method must be in class/struct void Method(string str) // CS0116 { Console.WriteLine(str); } } |