C# 向 COM 公开类 - 通用集合

3

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

The End

相关推荐

C# 中的多播委托奇怪行为?
Multicast delegate weird behavior in C#?(C# 中的多播委托奇怪行为?)...
2023-11-11 C#/.NET开发问题
6

参数计数与调用不匹配?
Parameter count mismatch with Invoke?(参数计数与调用不匹配?)...
2023-11-11 C#/.NET开发问题
26

如何将代表存储在列表中
How to store delegates in a List(如何将代表存储在列表中)...
2023-11-11 C#/.NET开发问题
6

代表如何工作(在后台)?
How delegates work (in the background)?(代表如何工作(在后台)?)...
2023-11-11 C#/.NET开发问题
5

没有 EndInvoke 的 C# 异步调用?
C# Asynchronous call without EndInvoke?(没有 EndInvoke 的 C# 异步调用?)...
2023-11-11 C#/.NET开发问题
2

Delegate.CreateDelegate() 和泛型:错误绑定到目标方法
Delegate.CreateDelegate() and generics: Error binding to target method(Delegate.CreateDelegate() 和泛型:错误绑定到目标方法)...
2023-11-11 C#/.NET开发问题
14