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..
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..