System.Reflection.ReflectionTypeLoadException.ReflectionTypeLoadException C# (CSharp) Method

ReflectionTypeLoadException() public method

public ReflectionTypeLoadException ( Type classes, Exception exceptions, String message ) : System
classes Type
exceptions Exception
message String
return System
        public ReflectionTypeLoadException(Type[] classes, Exception[] exceptions, String message) : base(message)
        {
            _classes = classes;
            _exceptions = exceptions;
            SetErrorCode(__HResults.COR_E_REFLECTIONTYPELOAD);
        }

Same methods

ReflectionTypeLoadException::ReflectionTypeLoadException ( ) : System
ReflectionTypeLoadException::ReflectionTypeLoadException ( SerializationInfo info, StreamingContext context ) : System
ReflectionTypeLoadException::ReflectionTypeLoadException ( String message ) : System
ReflectionTypeLoadException::ReflectionTypeLoadException ( Type classes, Exception exceptions ) : System