i'm developing a simple C# Editor for one of my university courses and I need to send a .cs file to Compiler and collect errors (if they exist) and show them in my app. In other words i want to add a C# Compiler to my Editor. Is there anything like this for the debugger?
|
|
If you use the CodeDomProvider
|
||
|
|
|
|
You can call the C# compiler in a command, and then catch the output. Check here for more information on building from the command line. |
||
|
|
|
|
Use the For this specific scenario, I suggest you look at |
||
|
|
