Communication between C# applications - the easy way -


i have 2 c# programs , want send data , forth between them. (and check if data arrived other application.) 2 programs run on same computer, no networking capability required. i've read questions similar topics here, i'm not entirely sure right method me. (wcf, remoting, etc.)

what want know, 1 easier implement beginner in c#? (i don't want complicated anyway, it's few integers , text want send.)

if there isn't real difference in difficulty, advantages 1 have on other?

i'd appreciate simple example code well.

thanks in advance.

wcf packages various methods of communication between applications (web services, remoting, msmq etc) in single package, programmatically same in way used, , detail of method used left configuration of binding between. slight simplification perhaps, it's about.

it worth getting wcf if need inter-process communication, , advice way go this. it's worth looking @ idesign, produce number of articles on subject, reusable code libraries, may find useful. juval lowy has written excellent book on subject,


Comments

Popular posts from this blog

unicode - Are email addresses allowed to contain non-alphanumeric characters? -

c++ - Convert big endian to little endian when reading from a binary file -

C#: Application without a window or taskbar item (background app) that can still use Console.WriteLine() -