I think you have to redirect the output and use
Console.WriteLine
.
Mhm... maybe something like
this[
^] could help you
In your APP-1
var launchAuthorApp = new System.Diagnostics.Process {
StartInfo = {
FileName = @"C:\APP2.exe",
UseShellExecute = false,
RedirectStandardOutput = true,
Arguments = "INVK://param1/value1/param2/value2/"
}
};
launchAuthorApp.Start();
Console.WriteLine(launchAuthorApp.StandardOutput.ReadToEnd());
And in APP-2 (as example)
static void Main(string[] args) {
Console.WriteLine(args[0]);
}