sharing variables between running applications in C#

前端 未结 4 930
眼角桃花
眼角桃花 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:46

    There is no simple way for Application B to read data created in Application A. Each application has its own address space and thus do not know of the others existence.

    But, there are ways to do this!

    See this question for one method..

提交回复
热议问题