B
Bob
Hi,
I am using System.Diagnostics.Process in my C# console application to
start a third party application, it works all fine but it just running
too slow, could any one let me know whether it is possible to have the
application run faster by using Process?
This is my code:
Process p = new Process();
p.StartInfo.WorkingDirectory = strWorkingDirectory;
p.StartInfo.FileName = ThirdPartyApplicationPath;//(C:\Program Files
\myApp.exe")
p.StartInfo.Arguments = ApplicationArguments;
p.StartInfo.CreateNoWindow = true;
p.Start();
p.WaitForExit();
Many Thanks.
I am using System.Diagnostics.Process in my C# console application to
start a third party application, it works all fine but it just running
too slow, could any one let me know whether it is possible to have the
application run faster by using Process?
This is my code:
Process p = new Process();
p.StartInfo.WorkingDirectory = strWorkingDirectory;
p.StartInfo.FileName = ThirdPartyApplicationPath;//(C:\Program Files
\myApp.exe")
p.StartInfo.Arguments = ApplicationArguments;
p.StartInfo.CreateNoWindow = true;
p.Start();
p.WaitForExit();
Many Thanks.