J
Jon Berry
Is there any difference between using the Process.Start method and
creating a new Process and calling Start?
Process.Start(path)
vs.
Process process = new Process();
ProcessStartInfo psi = new ProcessStartInfo(path)
process.StartInfo = psi;
process.Start()
creating a new Process and calling Start?
Process.Start(path)
vs.
Process process = new Process();
ProcessStartInfo psi = new ProcessStartInfo(path)
process.StartInfo = psi;
process.Start()