Tagged Questions

9
votes
7answers
3k views

Where would you use C# Runtime Compilation?

I happened upon a brief discussion recently on another site about C# runtime compilation recently while searching for something else and thought the idea was interesting. Have you ever used this? ...
7
votes
4answers
327 views

Online c# interpreter security issues

I am toying around with the idea of building an online C# interpreter, a bit like Codepad. Now there are obvious security issues: Infinite loops System.Diagnostics.Process.Start Pretty much the ...
2
votes
7answers
968 views

Compile and run dynamic code, without generating EXE?

I was wondering if it was possible to compile, and run stored code, without generating an exe or any type of other files, basically run the file from memory. Basically, the Main application, will ...
0
votes
4answers
103 views

Compile piece of code dynamically and add it to the current class

I want to create several properties on the fly inside the class' constructor and add them to the current class. The property's template is the following public [PropertyType] [PropertyName] { get ...
0
votes
1answer
406 views

How do I pass parameters in run-time compilation in c#, winforms?

I'm stuck on run-time compilation and CodeDom. Here's a simplified example of what I have so far. public static void Testing() { CodeDomProvider codeProvider = ...
0
votes
1answer
59 views

CompileAssemblyFromDom with many-to-may relation

I have two classes. public class Student{ public List<Course> Courses {get;set;} } public class Course{ public Student Student {get;set;} } I need to compile them each in ...