Load class library at runtime

  • Thread starter Thread starter Nikolay Petrov
  • Start date Start date
Nikolay Petrov said:
Can I load a class library at runtime?
Plugins, etc?

'System.Reflection.Assembly.Load'
'System.Reflection.Assembly.LoadFrom'

Note that 'Assembly' is a reserved keyword. Thus you'll have to escape it
by putting it between square brackets when accessing it without
qualification.
 
See these links:

http://msdn.microsoft.com/asp.net/c...library/en-us/dnaspp/html/pluginframework.asp

http://msdn.microsoft.com/asp.net/c...ibrary/en-us/dnaspp/html/searchforplugins.asp

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dncscol/html/csharp05162002.asp

--
Best regards,

Carlos J. Quintero

MZ-Tools: Productivity add-ins for Visual Studio .NET, VB6, VB5 and VBA
You can code, design and document much faster.
Free resources for add-in developers:
http://www.mztools.com
 
Nikolay Petrov said:
Can I load a class library at runtime? Plugins, etc?


System.Reflection.Assembly.Load


Plugins are often based on interfaces provided by the designer of the main
applicatoni, less on reflection.


Armin
 

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