C
Clive Dixon
If I do
System.Diagnostics.Process p = new System.Diagnostics.Process;
p.StartInfo.FileName = "<an executable name>";
// ... (set other properties)
p.Start();
How can I force .NET to look for the named executable in the path? It does
not appear to do this by default.
System.Diagnostics.Process p = new System.Diagnostics.Process;
p.StartInfo.FileName = "<an executable name>";
// ... (set other properties)
p.Start();
How can I force .NET to look for the named executable in the path? It does
not appear to do this by default.