How to run system() with C#? -
i'm rewriting ruby program in c#. has lot of system() calls (like system("./program")).
is there way call in c#, or have use systemm.diagnostics.process?
system.diagnostics.process.start .net equivalent system()
in ruby.
or have use systemm.diagnostics.process?
you can add using system.diagnostics;
@ top of file. becomes process.start("program.exe");
.
Comments
Post a Comment