我正在使用SDK中的COM接口。我想将辅助方法添加到基接口,因此我从中派生了一个类,但在派生对象中没有任何基本方法可见。这是为什么?我怎样才能满足我的需求?
public class DerivedClass : BaseCOMInterface {}
BaseCOMInterface b = new BaseCOMInterface();
Derived d = new DerivedClass();
b.Method(); // this works
d.Method(); // Method() not found
答案 0 :(得分:0)
它可能是你的"基地"类BaseCOMInterface
未声明为public
制作基类public
public class BaseCOMInterface {}