Data exchange between two applications in C #

I want to share data between two applications in C #. I did it with IPC and a text file that read and write. But I want two shared data, not them.

+3


source to share


1 answer


You can use:



  • Local database and connect both applications to it
  • Common file
  • Net pipe for connecting applications (search for NetNamedPipeBinding and DuplexChannelFactory)
+4


source







All Articles