How do I get Assembly reference for a .dll with no types in it?
var assembly = typeof (SomeType).Assembly; --> but without having to spacify any type?
Something like Assembly.Get("AssemblyName");
|
|
How do I get Assembly reference for a .dll with no types in it? var assembly = typeof (SomeType).Assembly; --> but without having to spacify any type? Something like Assembly.Get("AssemblyName"); |
|||
|
|
|
|
You want Assembly.Load, Assembly.LoadFile or Assembly.LoadFrom. There are differences between each . According to Suzanne Cook
And she also has another good post here detailing smoe of the advantages and disadvantages. |
||
|
|
|
|
You can use the Assembly.LoadFile or Assembly.Load methods |
||
|
|