Suzanne Cook's .NET CLR NotesCommon Language Runtime DeveloperLoad(AssemblyName)- August 4, 2004 Calling Load(AssemblyName) is not necessarily the same as calling Load(String). If the AssemblyName.CodeBase is not set, then they do do the same thing. So, if you've set the AssemblyName.Name, CultureInfo, public key token public key andor Version properties, it would be the same as if you had specified those properties in a String (as a display name) and passed that to Load(String). If the CodeBase is set, but the Name is not, however, then it's the same as calling...http://blogs.msdn.com/suzcook/archive/2004/08/04/load-assemblyname.aspx |