How can I run Process in .NET?
How can I ru开发者_如何学Gon Process in C# ?
You could use Process.Start method:
Process.Start("notepad.exe");
And if you want to pass arguments:
Process.Start("notepad.exe", "test.txt");
Here you can find your answers:
http://msdn.microsoft.com/en-us/library/system.diagnostics.process.aspx
I think you want the Process Class which can be used to start and control processes.
精彩评论