Use .NET DLL without refencing it

  • Thread starter Thread starter carlos.cruz
  • Start date Start date
C

carlos.cruz

Hi,

Is ther any way to use a .Net DLL in a .NET project without refrencing it
in Design-time?!
Can I doi in code directly? How?
Thanks

CC
 
Yes, check out the Assembly class. You can call the LoadAssembly method
to load it. You can use Activator.CreateInstance to create instances
of classes.

If you post, more specifically, what you are trying to accomplish,
perhaps we can provide more detailed help.
 

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

Back
Top