Running execute file in c# [duplicate]
Possible Duplicate:
How to shell execute a file in C#?
How can i run a开发者_Go百科n execute file in c# (by command line)?
and in addition, I want to save the output and see it on the screen?
See the System.Diagnostics.Process
class. See MSDN.
You use the StadardOutput (and optionally StandardError) to get the output and put it at the screen any way you want.
精彩评论