C# 向 COM 公开类 - 通用集合 [英] C# exposing class to COM - Generic Collections

查看:18
本文介绍了C# 向 COM 公开类 - 通用集合的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我们有一个用 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 公开类 - 通用集合的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆