Assembly DLL question

L

Lee

If Assembly A references Assembly B and I include Assembly A in my
project, does it implicitly import Assembly B?

--
Warm Regards,
Lee

"Upon further investigation it appears that your software is missing
just one thing. It definitely needs more cow bell..."
 
J

jeremiah johnson

Lee said:
If Assembly A references Assembly B and I include Assembly A in my
project, does it implicitly import Assembly B?

if you compile project A and in the output directory of A you see A and
B, then no; you will need to distribute B either before A or with A. it
will implicitly import it, but you will need to provide B wherever you
use A.

if you compile A and in the output directory of A you see only A, then
you will not need to distribute B; it put everything it needed into A.
you will probably not need to distribute B with A, and no implicit
importing is needed.

that is, if I'm understanding you correctly.

i'm quite sure if i'm incorrect someone will tell me i'm wrong immediately.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top