c# 4.0 - How do I create a new proccess in C# (.Net4)? -
I need to create a process that will wait until it runs with executables and check for errors.
thanks
system Diagnostics. Process
class. process.start ()
will start a new process (with logic, if you want - many overloaded), process. WaitForActit ()
will wait for it to exit and exit the exit code of ExitCode
property will return. All self-documentation, right?
Comments
Post a Comment