What do I need to do to implement an “out of proc” COM server in C#?

后端 未结 4 567
被撕碎了的回忆
被撕碎了的回忆 2020-12-06 06:00

I am trying to implement an \"out of proc\" COM server written in C#. How do I do this?

I need the C# code to be \"out of proc\" from my main C++ application, becaus

4条回答
  •  旧时难觅i
    2020-12-06 06:52

    You can create COM+ components using System.EnterpriseServices.ServicedComponent. Consequently, you'll be able to create out-of-proc and in-proc (client) component activation as well as all COM+ benefits of pooling, remoting, run as a windows service etc.

提交回复
热议问题