Sign In
Suzanne Cook's .NET CLR Notes
Common Language Runtime Developer
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
RSS for posts
Atom
RSS for comments
OK
Search
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
Loader Debugging Advice
Loader Info
Archive
Archives
February 2005
(1)
January 2005
(1)
October 2004
(1)
August 2004
(1)
June 2004
(1)
May 2004
(1)
March 2004
(1)
February 2004
(1)
December 2003
(1)
November 2003
(1)
September 2003
(2)
August 2003
(2)
July 2003
(3)
June 2003
(7)
May 2003
(6)
May, 2003
MSDN Blogs
>
Suzanne Cook's .NET CLR Notes
>
May, 2003
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Suzanne Cook's .NET CLR Notes
Avoid Partial Binds
Posted
over 9 years ago
by
Suzanne Cook
13
Comments
A partial bind is when only part of the assembly display name is given when loading an assembly. Assembly.LoadWithPartialName() also uses partial binding. First, it calls Assembly.Load(). But, if that fails to find the assembly, it will return the...
Suzanne Cook's .NET CLR Notes
Using Type.GetType(typeName)
Posted
over 9 years ago
by
Suzanne Cook
5
Comments
If no assembly is specified, Type.GetType() will only look in the calling assembly and then mscorlib.dll for the type. For it to look in any other assembly, you need to give the Type.AssemblyQualifiedName for the type. For example: Type.GetType("System...
Suzanne Cook's .NET CLR Notes
When to Change File/Assembly Versions
Posted
over 9 years ago
by
Suzanne Cook
28
Comments
First of all, file versions and assembly versions need not coincide with each other. I recommend that file versions change with each build. But, don’t change assembly versions with each build just so that you can tell the difference between two versions...
Suzanne Cook's .NET CLR Notes
Choosing a Binding Context
Posted
over 9 years ago
by
Suzanne Cook
41
Comments
There are three 'contexts' for assembly binding: Load context In general, if the assembly was found by probing in the GAC, a host assembly store (if hosted), or the ApplicationBase / PrivateBinPaths of the AppDomain, the assembly will be loaded...
Suzanne Cook's .NET CLR Notes
Assembly Display Names
Posted
over 9 years ago
by
Suzanne Cook
32
Comments
An assembly display name should include the assembly simple name, version, culture and public key token. The assembly simple name is usually the file name of the assembly without the extension (“.dll” or “.exe”). For example, the assembly display name...
Suzanne Cook's .NET CLR Notes
Debugging Assembly Loading Failures
Posted
over 9 years ago
by
Suzanne Cook
108
Comments
So...you're seeing a FileNotFoundException, FileLoadException, BadImageFormatException or you suspect an assembly loading failure? Try the steps below to start your debugging process. First, get the Message property from the exception. If the exception...
Page 1 of 1 (6 items)