当前位置:  开发笔记 > 编程语言 > 正文

是否可以使用.NET泛型类实现COM接口?

如何解决《是否可以使用.NET泛型类实现COM接口?》经验,为你挑选了1个好方法。

我有以下界面,我正在尝试使COM可见.当我尝试生成类型库时,它不喜欢我的实现类派生自泛型类的事实.

是否可以将泛型类用作COM实现类?(我知道我可以编写一个非通用的包装器并将其导出到COM,但是这会添加另一个我宁愿不用的层.)

[ComVisible(true)]
public interface IMyClass
{
   ...
}

[ComVisible(true), ComDefaultInterface(typeof(IMyClass))]
[ClassInterface(ClassInterfaceType.None)]
public class MyClass : BaseClass, IMyClass
{
   ...
} 

错误信息:

Warning: Type library exporter encountered a type that derives 
from a generic class and is not marked as 
[ClassInterface(ClassInterfaceType.None)]. Class interfaces cannot
be exposed for such types. Consider marking the type with 
[ClassInterface(ClassInterfaceType.None)] 
and exposing an explicit interface as the default interface to 
COM using the ComDefaultInterface attribute.

Joseph Daigl.. 6

无法导出从泛型类型派生的泛型类型和类型.设置ComVisible(false)您的MyClass类型.您需要创建非泛型类实现或仅使用该接口.



1> Joseph Daigl..:

无法导出从泛型类型派生的泛型类型和类型.设置ComVisible(false)您的MyClass类型.您需要创建非泛型类实现或仅使用该接口.

推荐阅读
mobiledu2402851377
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有