Tagged Questions

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 ...
0
votes
1answer
138 views

CodeDOM & .Net Modules

How do I programmatically embed a .Net module to the assembly generated by CodeDOM?