I have two DLL's .One Dll contains the Base class and the second dll
containts the derived class.
Now I want to use the second dll only not referencing the first dll in
my project.
I tried but I was failed to do so. Please help me out.
<visweswararao.ne
@gmail.com> wrote:
> I have two DLL's .One Dll contains the Base class and the second dll
> containts the derived class.
> Now I want to use the second dll only not referencing the first dll in
> my project.
> I tried but I was failed to do so. Please help me out.
You can't. How would the compiler know what public methods are
available in the base class, for instance?
--
Jon Skeet - <s@pobox.com>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too
-----------------------------------------------Reply-----------------------------------------------
Add two of the dlls and check out the namespaces of the base dll in
derived classes.