I am currently developing an application in C# which needs to work sort of like a “Command Prompt”, therefore I was wondering whether the C++ function
int system ( const char * command );
in cstdlibexists in C#?
A reference to an dynamic-link library containing this function would be accepted aswell.
Look into
System.Diagnostics.Process.Start: http://msdn.microsoft.com/en-us/library/system.diagnostics.process.start.aspx