Circular Reference problem..

  • Thread starter Thread starter babylon
  • Start date Start date
B

babylon

Class A stores in assembly a.dll
Class B stores in assembly b.dll

Class A would like to reference a class b object and
class B would also like to reference a class a object
e.g.
Class A
{
private B;
}

Class B
{
private A;
}

how can it be done?
coz i need to add reference to both project before I can compile them,
but I won't able to create the dll for both classes without compiling
them.....
so...

thx..
 
You can't do this but there are way around it. One method is to have one class keep a reference to the other as object (probably not
what you are after). The other method is to have one of the classes implement an interface that is defined in the other dll. That
way the interface for class A and class B are both defined in the same dll so both classes can each other.
 
icic...thx!
Michael Culley said:
You can't do this but there are way around it. One method is to have one
class keep a reference to the other as object (probably not
what you are after). The other method is to have one of the classes
implement an interface that is defined in the other dll. That
way the interface for class A and class B are both defined in the same dll
so both classes can each other.
 
Back
Top