C# exposing class to COM - Generic Collections

北城余情 提交于 2019-11-28 01:44:42

问题


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
}

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.


回答1:


It is not possible to expose generic collections (or any other thing that is 'generic') to 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.

Example:

[ComVisible(true)]
public interface IOurClass
{
    IOurListObject[] OurCollection { get; }
}

public class OurClass : IOurClass
{
    IOurListObject[] IOurClass.OurCollection { get { return OurCollection.ToArray();} }

    public ReadOnlyCollection<IOurListObject> OurCollection { ... }
}



回答2:


Check out this post. Either use a straight forward array or use an ArrayList. Seems like a step backwards, but generic collections don't play nice with COM.



来源:https://stackoverflow.com/questions/1862497/c-sharp-exposing-class-to-com-generic-collections

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!