sharing variables between running applications in C#

前端 未结 4 936
眼角桃花
眼角桃花 2020-12-10 19:28

I am developing in C# two simple applications, running in the same local machine without network requirements.

The first application initializes an DLL (Class1) and

4条回答
  •  醉话见心
    2020-12-10 19:36

    You can use .net Remoting to communicate between your two application.
    Remoting also does not require a network address to communicate.

提交回复
热议问题