Archived

This forum has been archived. Please start a new discussion on GitHub.

dll specific question

xdm
xdm La Coruña, Spain
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.

Comments

  • I have no idea whether this works or not. This is really a question for Microsoft, not for us :)

    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.