Answer the question
In order to leave comments, you need to log in
How to transfer data from one process to another?
Hello,
I have 2 applications, both written by me.
1 application is something like a launcher, it launches the second one and hangs as a process. Next, the first application on the server checks if there is an update. If there is an update, the 1st application should somehow correctly tell the 2nd application that it needs to end. Next, the first application downloads some files, and then launches 1 application again.
Both applications are written in c#, windows forms.
How can I implement something like this?
Now I'm doing this:
Process proc = new Process();
proc.StartInfo.FileName = "D:/dir/Programm.exe";
proc.Start();
proc.Kill();
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question