I have two applications:
1.: C# GUI application written in VisualStudio 2013.
2.: C++ GUI application written in VisualStudio 2013.
I would like to send float numbers from application #1 to application #2.
(In other words: If the C# app. calculates a float number (e.g.: 12.32) then I would like to see this number on the standard output written by the C++ application.)
What is the easiest way to accomplish this? Is there any Windows API, or common-memory-address-thing, etc. to accomplish this?