Loading referenced assemblies using Reflection
Hi All,
I am in the process of alpha testing my persistent objects framework for .NET. I have recently stumbled upon a scenario that I hadn't accounted for earlier when dynamically loading types with Reflection. The situation that is occuring is that when an assembly is being loaded, and it references other assemblies, how can I get it to load the types from the referenced assemblies without throwing a ReflectionTypeLoadException. I realise you can use GetReferencedAssemblies(), but I don't know how to connect the two.
Any and all help is appreciated, many thanks
Matthew Abbott

