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 separate assembly. CompileAssemblyFromDom argues that it doesnt find another type and it makes sense because these classes are circular dependent. Is there any workaround to do that?

Thanks.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

You cannot have them in separate assemblies; you can however abstract out interfaces for the classes and share the interfaces.

In order to reference one assembly from the other when using CompileAssemblyFromDom, you should use the CompilerParameters.ReferencedAssemblies Property

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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