T
Troy
Hi,
I have some circular dependencies that confuses me. I have 2 interfaces that
uses each others interface. When they are compile within the same assembly
there is no problem(?), but when they are in 2 different assemblies i get the
circular dependency problem (When adding reference!)...
Shouldn't it either work in both senarios or not?
And next question, how do i get around this problem.
TIA
----------------------------
interface IA {
IB Foo();
}
interface IB {
IA Foo();
}
- Compiles with success when in they are in same assembly.
- Failes due to "dependecy problems" when they are in their indivdual
assembly.
I have some circular dependencies that confuses me. I have 2 interfaces that
uses each others interface. When they are compile within the same assembly
there is no problem(?), but when they are in 2 different assemblies i get the
circular dependency problem (When adding reference!)...
Shouldn't it either work in both senarios or not?
And next question, how do i get around this problem.
TIA
----------------------------
interface IA {
IB Foo();
}
interface IB {
IA Foo();
}
- Compiles with success when in they are in same assembly.
- Failes due to "dependecy problems" when they are in their indivdual
assembly.