I am launching a C# windows application “Test.exe” from a button click event of C++ as below.
CreateProcess("D:\\Test\\Test.exe",
“Passing Data to C#”,
NULL,
NULL,
FALSE,
CREATE_DEFAULT_ERROR_MODE,
NULL,
NULL,
&siStartupInfo,
&piProcessInfo);
Please let me know how to receive the parameter “Passing Data to C#” from C# windows application i.e. Test.exe