Answers for "run a c# file"

C#
3

run a command in cmd with c

//C library statement
#include <stdlib.h>

//Driver program
int main(void)
{
	//The C command to run a command in cmd
	system("Your command here");
}
Posted by: Guest on December-15-2020
0

c# run file

System.Diagnostics.Process.Start(filePath);
Posted by: Guest on January-20-2021

C# Answers by Framework

Browse Popular Code Answers by Language