System.TypeLoadException.TypeLoadException C# (CSharp) Method

TypeLoadException() private method

private TypeLoadException ( String className, String assemblyName, String messageArg, int resourceId ) : System
className String
assemblyName String
messageArg String
resourceId int
return System
        private TypeLoadException(String className,
                                  String assemblyName,
                                  String messageArg,
                                  int    resourceId)
        : base(null)
        {
            SetErrorCode(__HResults.COR_E_TYPELOAD);
            ClassName  = className;
            AssemblyName = assemblyName;
            MessageArg = messageArg;
            ResourceId = resourceId;

            // Set the _message field eagerly; debuggers look at this field to 
            // display error info. They don't call the Message property.
            SetMessageField();   
        }

Same methods

TypeLoadException::TypeLoadException ( ) : System
TypeLoadException::TypeLoadException ( SerializationInfo info, StreamingContext context ) : System
TypeLoadException::TypeLoadException ( String message ) : System
TypeLoadException::TypeLoadException ( String message, Exception inner ) : System