Creating a COM Automation Server in C#

后端 未结 4 1967
不知归路
不知归路 2020-12-09 00:00

I currently have a .NET class library written in C# that exposes its functionaility via COM to a C++ program (pre-.NET).

We now want to move the library out-of-proce

4条回答
  •  温柔的废话
    2020-12-09 00:31

    You could always expose your .NET class as COM classes using InteropServices and then configure the library as a COM+ application. The .NET library would run out-of-process and be hosted by a DLLHOST.EXE instance.

提交回复
热议问题