Process.Start will let you run any application including GCC (or any other compiler/make utility) and pass arguments.
Process.Start("gcc.exe", "my.c");
You probably need more command line options than just file name (i.e. output/include folder locations) and may need to specify path to compiler if it is not already available in the PATH environment variable.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…