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.
 
Back
Top