从COM接口派生 - 基本方法不可见

时间:2015-11-04 01:00:45

标签: c# com

我正在使用SDK中的COM接口。我想将辅助方法添加到基接口,因此我从中派生了一个类,但在派生对象中没有任何基本方法可见。这是为什么?我怎样才能满足我的需求?

public class DerivedClass : BaseCOMInterface {}

BaseCOMInterface b = new BaseCOMInterface();
Derived d = new DerivedClass();

b.Method(); // this works
d.Method(); // Method() not found

1 个答案:

答案 0 :(得分:0)

它可能是你的"基地"类BaseCOMInterface未声明为public

制作基类public

public class BaseCOMInterface {}