J
Julia
Hi,
My host application loading plugins at runtime
How can I dynamically load types from a dll without
specify the name of the dll in my application or in a config file
can I give a dll an alias?
assuming i have two implemnatations of a messaging service(only one should
be installed)
1.smtp.dll
2.exchange.dll
insetad of
LoadType("smtp.dll")
I would like to write
LoadType("Messaging")
when installing the exchange.dll i will still uses
LoadType("Messaging")
Thanks.
BTW:I do specify the type of object to create in the app.config.
My host application loading plugins at runtime
How can I dynamically load types from a dll without
specify the name of the dll in my application or in a config file
can I give a dll an alias?
assuming i have two implemnatations of a messaging service(only one should
be installed)
1.smtp.dll
2.exchange.dll
insetad of
LoadType("smtp.dll")
I would like to write
LoadType("Messaging")
when installing the exchange.dll i will still uses
LoadType("Messaging")
Thanks.
BTW:I do specify the type of object to create in the app.config.