How compile a file from my application
-
I've created a program that make a c# class. Can i inlcude with my application a free program that produce a .dll file?
-
-
I've created a program that make a c# class. Can i inlcude with my application a free program that produce a .dll file?
This might be what you're looking for...
new Microsoft.CSharp.CSharpCodeProvider().CreateCompiler()
Josh -
How can i to know how can i run it within my application then what the comand line are? where can i find the license?
Sasuko wrote:
where can i find the license?
Download that link, there will be a text or HTML file included detailing the licence.
Sasuko wrote:
how can i run it within my application then what the comand line are?
csc.exe yourCodeFile.cs
Look in MSDN for documentation on csc.exe, it will explain producing a DLL etc. if that's what you need
- Dy