我正在将C++转换为C++/CLI,并希望将某些托管类公开为COM对象。在C#中,这很容易,设置[ComVisible]和从接口(interface)(也是ComVisible)继承就可以了。
但是,作为C++/CLI构建的C++项目不会导出DllRegisterServer。

这是示例项目(从VS 2008中的CLR控制台应用程序项目开始)。

#include "stdafx.h"

using namespace System;
using namespace System::Runtime::InteropServices;

[ComVisible(true)]
[Guid("E3CF8A18-E4A0-4bc3-894E-E9C8648DC1F0")]
[InterfaceType(ComInterfaceType::InterfaceIsDual)]
public interface class ITestInterface
{
    void TestMethod();
};


[ComVisible(true)]
[Guid("1514adf6-7cb0-4561-9fbb-b75c0467149b")]
public ref class CliComClass : ITestInterface
{
    public:
        virtual void TestMethod()
        {
        }
};

int main(array<System::String ^> ^args)
{
    Console::WriteLine(L"Hello World");
    return 0;
}

当我在输出.exe上运行regsvr32时,出现错误,提示未找到DllRegisterServer。我已经尝试谷歌的一些帮助,但没有成功。

最佳答案

您需要使用TlbExp代替,TlbExp是用于将托管类导出到COM的工具,它将读取程序集以找到ComVisible类型并进行注册。

10-04 18:52