I had a big problem when I'm writing a small piece of code to check the assembly version in a specific folder. Originally, I use
Assembly.LoadFrom( strPath) , but if I change strPath to the second location which contain the same assembly but with higher version, this function doesn't reload the assembly .Instead, the return value is still pointed to the original folder. But if I change to use Assembly.LoadFile(strPath) , the issue is disapeared. Is it a bug ? or by design ? or I miss something ? By the way, my code is ASP.Net. I'm also not sure if it's the same issue in Windows GUI. =================================== This list is hosted by DevelopMentor� http://www.develop.com Some .NET courses you may be interested in: NEW! Guerrilla ASP.NET, 26 Jan 2004, in Los Angeles http://www.develop.com/courses/gaspdotnetls View archives and manage your subscription(s) at http://discuss.develop.com
