views:

105

answers:

1
Assembly assembly = Assembly.Load("MyAssembly");

Will the above also load all the references/dependencies "MyAssembly" needs ?

+3  A: 

No; references and types are loaded on-demand as they're required. The specific rules used for locating an assembly can be found here.

Adam Robinson