Microsoft.CSharp.CSharpCodeProvider or Microsoft.CSharp.Compiler Classes??

aewarnick

Senior Contributor
Joined
Jan 29, 2003
Messages
1,031
I think the Compiler class is only found in the 1.1 framework but I think they do the same thing.

I am wondering if this is what I have been looking for for some time now? Can I enable the user to build their own exe files with this class?
 
Yes, those classes are for code generation and compiling. You could do the same in .NET 1.0.
 
I published an article on making .net applications scriptable, it includes everything you need to make exe files on the fly. You can find it here or on my website.
 
Back
Top