更新:2007 年 11 月
错误消息
“type”的分部声明必须全部是类、构造或接口如果分部类型在不同的位置声明为不同的构造类型,则会发生此错误。有关更多信息,请参见
下面的示例生成 CS0261:
复制代码 | |
---|---|
// CS0261.cs partial class A // CS0261 – A declared as a class here, but as a struct below { } partial struct A { } |
更新:2007 年 11 月
如果分部类型在不同的位置声明为不同的构造类型,则会发生此错误。有关更多信息,请参见
下面的示例生成 CS0261:
复制代码 | |
---|---|
// CS0261.cs partial class A // CS0261 – A declared as a class here, but as a struct below { } partial struct A { } |