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

后端 未结 4 559
被撕碎了的回忆
被撕碎了的回忆 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条回答
  •  不思量自难忘°
    2020-12-06 06:36

    Here we can read that it is possible, but the exe will be loaded as an library and not started in it's own process like an exe. I don't know if that is a problem for you? It also contains some possible solutions if you do want to make it act like a real out of process com server. But maybe using another way of inter process communication is better. Like .Net Remoting.

提交回复
热议问题