C# start programs
- by lolalola
Hi,
I'm create program and save with Visual studio: test.exe
Then create created program: run.exe, with code:
using System.Diagnostics;
Process run = new Process();
run.StartInfo.FileName = "test.exe";
run.Start();
Why this progran don't start first program(test.exe)?