문제

Is there a way to compile a C++ file from C#, assuming the compiler (G++ or VC++) is installed on the computer?

도움이 되었습니까?

해결책

You should be able to take the same compiler call that you would make in the command line and recreate it using the Process class. The MSDN page has examples of how to use Process.

다른 팁

Yes you would just invoke the c++ compiler with the proper arguments. However there are tools custom built to do just this Make and msbuild for example so I would doubt that a new tool would better serve you.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top