vote up 3 vote down star
2

I've seen a couple .net applications that allow you to select a C# .cs source file and the program itself will compile this code and run it.

How is this done?

flag

63% accept rate

4 Answers

vote up 10 vote down check

It probably uses the CSharpCodeProvider class in the Microsoft.CSharp namespace. You would want to look at the following methods to compile code:

CompileAssemblyFromDom
CompileAssemblyFromFile
CompileAssemblyFromSource
link|flag
vote up 0 vote down

My guess is by explicitly calling the csc.exe compiler. Keep in mind that this and any dependencies would have to be included with your deployment.

You can take a look at CS-Script which interprets C# files. Its free but not open sources though...

link|flag
vote up 1 vote down

MSDN has a great series of articles explaining this...

http://msdn.microsoft.com/en-us/library/650ax5cx.aspx

link|flag
vote up 2 vote down

CodeDOM is your friend

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.