2

我有一个 .NET 程序集。它恰好是用 C++/CLI 编写的。我正在通过 COM 公开一些对象。一切正常,但我一生无法弄清楚如何从方法中返回我自己的对象数组。每次我这样做时,都会在运行时收到类型不匹配错误。我可以很好地返回一个整数或字符串数​​组。

这是我的主要课程

[Guid("7E7E69DD-blahblah")]
[ClassInterface(ClassInterfaceType::None)]
[ComVisible(true)]
public ref class Foo sealed : IFoo
{
public:
    virtual array<IBar^>^ GetStuff();
}

[Guid("21EC1AAA-blahblah")]
[InterfaceType(ComInterfaceType::InterfaceIsIDispatch)]
[ComVisible(true)]  
public interface class IFoo
{
public:
    virtual array<IBar^>^ GetStuff()
    {
        // For simplicity, return an empty array for now.
        return gcnew array<IBar^>(0);
    }
};

这是我要返回的课程

[Guid("43A37BD4-blahblah")]
[InterfaceType(ComInterfaceType::InterfaceIsIDispatch)]
[ComVisible(true)]  
public interface class IBar
{
    // Completely empty class, just for testing.  
    //In real life, I would like to return two strings and an int.
};

[Guid("634708AF-blahblah")]
[ClassInterface(ClassInterfaceType::None)]
[ComVisible(true)]
[Serializable]
public ref class Bar : IBar
{
};

这是我调用它的(本机)C++ 代码:

MyNamespace::IFooPtr session(__uuidof(MyNamespace::Foo));
// For simplicity, don't even check the return.
session->GetStuff();

调用 GetStuff() 会得到一个 _com_error 0x80020005 (DISP_E_TYPEMISMATCH)。我可以告诉我的方法被正确调用了,只是当 .NET/COM 去编组返回时,它会窒息。正如我所说,它适用于整数或字符串数​​组。我必须对我的班级做些什么才能让它在数组中返回?

碰巧的是,我的类将只包含几个字符串和一个 int(无方法),如果这样更容易的话。显然我已经尝试返回一个非空数组和实际包含一些数据的类,这只是说明问题的最简单的情况。

4

1 回答 1

0

你需要实现IDispatchEnumerator方法

public ref class FooCollection{
[DispId(-4)]
public IEnumerator^ GetEnumerator()
{
//...
}
}
于 2009-11-17T03:30:12.390 回答