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.