vote up 1 vote down star

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");

flag

2 Answers

vote up 3 vote down check

You want Assembly.Load, Assembly.LoadFile or Assembly.LoadFrom. There are differences between each .

According to Suzanne Cook

LoadFrom() goes through Fusion and can be redirected to another assembly at a different path but with that same identity if one is already loaded in the LoadFrom context.

LoadFile() doesn't bind through Fusion at all - the loader just goes ahead and loads exactly* what the caller requested. It doesn't use either the Load or the LoadFrom context.

And she also has another good post here detailing smoe of the advantages and disadvantages.

link|flag
vote up 0 vote down

You can use the Assembly.LoadFile or Assembly.Load methods

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.