sharing memory between two applications

uniquepito picture uniquepito · Oct 25, 2011 · Viewed 53.9k times · Source

I have two different windows applications (two different people writing the code). One is Written in C++ and another one is in C#. I need some way how to share data in RAM between them. One must writes data and another one just reads the written data. What should I use to make it most effective and fast? Thanks.

Answer

Oded picture Oded · Oct 25, 2011

You can use Memory Mapped Files.

Here is an article describing how to use them.