Can i programatically compile a batch file form c#. Meaning that I give the location of the file and some C# Library compiles the file and gives the output
Can anyone tell me the library for C# that can help me write a small intepreter for C#
Can i programatically compile a batch file form c#. Meaning that I give the location of the file and some C# Library compiles the file and gives the output
Can anyone tell me the library for C# that can help me write a small intepreter for C#
Batch files in windows do not get compiled. They get executed by a command processor.
You can use Process.Start to execute a batch file from within a C# program.