| TypeLoadException | CF 1.0, ECMA 1.0, serializable |  
 
 | System (mscorlib.dll) | class |  
 
This exception signals that a 
class (or its assembly) cannot be
found or loaded by the .NET runtime. 
public class TypeLoadException : SystemException {
// Public Constructors
   public TypeLoadException( );
   public TypeLoadException(string message);
   public TypeLoadException(string message, Exception inner);
// Protected Constructors
   protected TypeLoadException(System.Runtime.Serialization.SerializationInfo info,
        System.Runtime.Serialization.StreamingContext context);
// Public Instance Properties
   public override string Message{get; } 
// overrides Exception
   public string TypeName{get; }
// Public Instance Methods
   public override void GetObjectData( System.Runtime.Serialization.SerializationInfo info,
        System.Runtime.Serialization.StreamingContext context)
// overrides Exception
}
 
Hierarchy
Object   
Exception(System.Runtime.Serialization.ISerializable)
   SystemException  
TypeLoadException 
Subclasses
DllNotFoundException,
EntryPointNotFoundException 
 |