更新:2007 年 11 月
错误消息
“class”: 具有 ComImport 属性的类不能指定基类指定
下面的示例生成 CS0424:
复制代码 | |
---|---|
// CS0424.cs // compile with: /target:library using System.Runtime.InteropServices; public class A {} [ ComImport, Guid("7ab770c7-0e23-4d7a-8aa2-19bfad479829") ] class B : A {} // CS0424 error |