I added a new source (.exe) to my program. in the folder "Programs".
In a new process I want to do something like:
Process openProgram = new Process();
openProgram.FileName = "WpfApplication;Resources/Programs/myProgram.exe"
Obviously this is not working but can someone push me in the right direction and explain WHY this is impossible?
myProgram is set as Resource and Copy Always The Folders I Mentioned are NOT on my computer but in my application.
Regards