calling an EXE

  • Thread starter Thread starter dragonslayer008
  • Start date Start date
D

dragonslayer008

There is a command line tool I use a lot, that I would like to make a
front end GUI interface for. I'm new to .NET/C# though. Can someone
tell me the .NET call I need to look up that will allow me to call
an .EXE and pass command line arguments to it?
 
There is a command line tool I use a lot, that I would like to make a
front end GUI interface for. I'm new to .NET/C# though. Can someone
tell me the .NET call I need to look up that will allow me to call
an .EXE and pass command line arguments to it?

One common method for doing this is to use the Process class. See the
MSDN documentation for more details, including how to set command line
parameters and redirect the input and output if you want to interact
with the process.

Pete
 
Back
Top