问题描述
我们有一个用 C# .Net 2.0 编写的小框架,我们想向 COM 公开.
We have a small framework written in C# .Net 2.0 that we want to expose to COM.
问题是,我们有一些通用类会暴露如下:
Problem is, we have some generic classes that would be exposed as the following:
interface IOurClass
{
ReadonlyCollection<IOurListObject> OurCollection
{
get;
}
}
interface IOurListObject
{
//Some properties that don't matter
}
向 COM 公开泛型集合的最佳(或推荐方式)是什么?我们不必支持泛型,我们只需要以某种方式公开 IOurListObject 的集合.
What is the best (or recommended way) to expose generic collections to COM? We do not have to support generics, we just need to somehow expose a collection of IOurListObject.
我们也希望避免为我们使用的每个集合编写一个新类,但这可能是不可能的.
We also would like to avoid having to write a new class for every collection we use, but it may not be possible.
推荐答案
不可能向 COM 公开泛型集合(或任何其他泛型").
It is not possible to expose generic collections (or any other thing that is 'generic') to COM.
所以,我建议您在 COM 可见界面中创建一个非泛型属性(或方法).此方法可以返回IOurListObject"项的数组.在你的类中,你可以显式地实现这个方法,这样当你直接在 COM 之外引用对象时,它就不会出现在你的智能感知中.
So, I suggest that you create a non-generic property (or method) in your COM-visible interface. This method could return an array of 'IOurListObject' items. In your class, you could implement this method explicitly, so that it does not show up in your intellisense when you refer to the object directly outside COM, for instance.
我希望我能说清楚一点.
I hope I make myself a bit clear.
例子:
[ComVisible(true)]
public interface IOurClass
{
IOurListObject[] OurCollection { get; }
}
public class OurClass : IOurClass
{
IOurListObject[] IOurClass.OurCollection { get { return OurCollection.ToArray();} }
public ReadOnlyCollection<IOurListObject> OurCollection { ... }
}
这篇关于C# 向 COM 公开类 - 通用集合的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!


大气响应式网络建站服务公司织梦模板
高端大气html5设计公司网站源码
织梦dede网页模板下载素材销售下载站平台(带会员中心带筛选)
财税代理公司注册代理记账网站织梦模板(带手机端)
成人高考自考在职研究生教育机构网站源码(带手机端)
高端HTML5响应式企业集团通用类网站织梦模板(自适应手机端)