Sharing data between two independent Windows applications in C#

前端 未结 2 655
傲寒
傲寒 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:46

    or you can even use named pipe : http://www.eggheadcafe.com/articles/20060404.asp Or make communication with socket.

    You have a plenty of solution. If you need more details, feel free to ask.

    Best regards, Sylvain.

    0 讨论(0)
  • 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

    0 讨论(0)
提交回复
热议问题