Hi to all, I dont understand the diference between the Assembly.Load method, the Assembly.LoadFile and the Assembly.LoadFrom method. Can anybody help me?
You should never use Assembly.LoadFile(). Use LoadFrom() if you know where the assembly is located, use Load() to let .NET figure out where the assembly is located. Using Load() should be your preference but may require a .config file to help .NET find the assembly. Hans Passant.
Proposed As Answer bybaskaran_ramsMonday, April 27, 2009 9:02 AM
Marked As Answer byZhi-Xin YeThursday, April 30, 2009 12:20 PM
Microsoft is conducting an online survey to understand your opinion of the Msdn Web site. If you choose to participate, the online survey will be presented to you when you leave the Msdn Web site.