vote up 0 vote down star
1

I would like to scan a directory for any assemblies that are not already referenced in the project then load all instances of a class that implements IMyInterface.

I know that the Assembly.LoadFile method can help me out here but how do I determine if the assembly that I am loading was already referenced statically? I do not want to load any assemblies twice.

flag

68% accept rate

1 Answer

vote up 1 vote down check

You can use AppDomain.GetAssemblies to see which are already loaded.

link|flag

Your Answer

Get an OpenID
or

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