Code compiler interface using C#-Collection of common programming errors
I want to write a program or a class that can compile cpp codes using installed GCC compiler and if there are compilation errors: report them.
If there are no errors, then run the executable file and send inputs to and get outputs from that program, then use the outputs for other computations.
My solution is using .net Process
class and calling CMD
and …. but is there any better way or better .net components to write this program?