dll specific question

in Help Center
hello i have a question about use of ice and dll
is posible to build cross references dll when buid anl icebox services
example:
one class in a.dll depends of one class in b.dll
and one class of b.dll depnds of one class in a.dll
a.dll implement service AService
b.dll implement service BService
what is the correct way to magament this troubles.
is posible to build cross references dll when buid anl icebox services
example:
one class in a.dll depends of one class in b.dll
and one class of b.dll depnds of one class in a.dll
a.dll implement service AService
b.dll implement service BService
what is the correct way to magament this troubles.
0
Comments
However, it is definitely not a good coding style. You shouldn't have DLLs that mutually depend on each other. In this case, you should simply have one single DLL, because two separate DLLs, that cannot be used without the other, are not very useful.