Hello all,

I want to know what is the alternative to shell command in C# ?
Below is the shell command.

Code:
shell("C:\Compute.exe" + " Parse" + " C:\source.txt")
I have a 3rd party console application named "Compute.exe", which accepts a text file as input.

so Compute.exe is the application i call from my application.
Here "Parse" is one of the commands i pass depending upon the need.
And Source.txt is the name of the input file.

at present i am calling this program using Process.Start method. But this doest open/run the compute.exe as it should run when i double click on it.

also i cannot pass the parameters to this file.

Need serious help in this regards.

thanks
MMH