J
juvi
hello,
usually when I am starting an application/process through my .net cf
application I use the following:
system.diagnostics.process.start(...);
But the applications seems to take longer to start - is this correct?
I saw also the following way (are there advantages in using this one?):
ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.FileName = "...";
startInfo.Arguments = "...";
Process.Start(startInfo);
thank you in advance.
usually when I am starting an application/process through my .net cf
application I use the following:
system.diagnostics.process.start(...);
But the applications seems to take longer to start - is this correct?
I saw also the following way (are there advantages in using this one?):
ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.FileName = "...";
startInfo.Arguments = "...";
Process.Start(startInfo);
thank you in advance.