c# – C/C++LI中的ComVisible

前端之家收集整理的这篇文章主要介绍了c# – C/C++LI中的ComVisible前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在将C转换为C/C++LI,并希望将一些托管类公开为COM对象.在C#中它很容易并且设置[ComVisible]&继承自接口(也是ComVisible)完成了这项工作.
但是,作为C/C++LI的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类型并注册它们.
原文链接:https://www.f2er.com/csharp/99964.html

猜你在找的C#相关文章