|
web
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
Load class library at runtimeOn 2005-06-29, Nikolay Petrov <johnt***@mail.bg> wrote:
> Can I load a class library at runtime? Yes... Look at the Assembly.Load method.> Plugins, etc? > -- Tom Shelton [MVP] "Nikolay Petrov" <johnt***@mail.bg> schrieb: 'System.Reflection.Assembly.Load'> Can I load a class library at runtime? > Plugins, etc? '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. -- M S Herfried K. Wagner M V P <URL:http://dotnet.mvps.org/> V B <URL:http://classicvb.org/petition/> See these links:
http://msdn.microsoft.com/asp.net/community/authors/royosherove/default.aspx?pull=/library/en-us/dnaspp/html/pluginframework.asp http://msdn.microsoft.com/asp.net/community/authors/royosherove/default.aspx?pull=/library/en-us/dnaspp/html/searchforplugins.asp http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dncscol/html/csharp05162002.asp -- Show quoteHide quoteBest 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" <johnt***@mail.bg> escribió en el mensaje news:1120032257.685443.214450@o13g2000cwo.googlegroups.com... > Can I load a class library at runtime? > Plugins, etc? > "Nikolay Petrov" <johnt***@mail.bg> schrieb System.Reflection.Assembly.Load> Can I load a class library at runtime? Plugins, etc? Plugins are often based on interfaces provided by the designer of the main applicatoni, less on reflection. Armin |
|||||||||||||||||||||||