Sharing data between two independent Windows applications in C#

前端 未结 2 692
傲寒
傲寒 2020-12-21 18:58

I have two applications that use my clients database(s), but have no mutual dependency. The problem is that I need to make an application for configuration in which the admi

2条回答
  •  情书的邮戳
    2020-12-21 19:50

    You can use Memory-Mapped Files

    You can use it as a file, and access from different executables.

    Build your own class for interfacing with it.

    Tutorials:

    Programming Memory-Mapped Files with the .NET Framework

    Working with memory mapped files in .NET 4

提交回复
热议问题