re:
!> when I compile a library "into" another library and then call the complied library
!> from a class that also references the library compiled into the DLL I, of course,
!> get a conflict. There are two instances of the same class. So, I guess I am asking -
!> what is the most graceful way of handling such conditions?
Merge your classes into a single source file and eliminate duplicate class names.
Also, you can simply make sure you don't use the same class name in multiple source files.
Juan T. Llibre, asp.net MVP
Foros de VS 2010 y ASP.NET 4.0, en español
http://asp.net.do/foros/forums/
=================================
re:
!> If i have multiple DLLs that require the same library references to
!> run (for example, all using the MyCompany.Security) namespace and
!> referencing the same User class, how do I avoid a conflict when I am
!> finally adding the DLLs to my project?
Why do you think that would create a DLL conflict ?
Juan T. Llibre, asp.net MVP
Foros de VS 2010 y ASP.NET 4.0, en españolhttp://asp.net.do/foros/forums/
=================================
Well, maybe i have the wording wrong. But, when I compile a library
"into"
another library and then call the complied library from a class that
also references the library compiled into the DLL I, of course, get a
conflict.
There are two instances of the same class. So, I guess I am asking -
what is the most graceful way of handling such conditions?