vote up 1 vote down star

I'm loading an assembly at runtime and the question that arises everytime I call the code is that should I be checking if that particular assembly has loaded already? or does .Net take care of this and one assembly (same version) can only be loaded once? The basic question here is do i have to iterate through a list of loaded assemblies and see if my assembly was already loaded or not? Thanks

flag

Im using : System.Reflection.Assembly.LoadFrom() – Murtaza RC Jan 2 '09 at 20:14

1 Answer

vote up 6 vote down check

To quote MSDN: "If an assembly with the same identity is already loaded, LoadFrom returns the loaded assembly even if a different path was specified. "

link|flag
This holds true even if you are trying to reflect the current assembly. – StingyJack Jan 2 '09 at 21:16

Your Answer

Get an OpenID
or

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