System.NullReferenceException.NullReferenceException C# (CSharp) Method

NullReferenceException() public method

Initializes a new instance of the NullReferenceException class with a specified error message.
public NullReferenceException ( String message )
message String A String that describes the error. The content of message is intended to be understood by humans. The caller of this constructor is required to ensure that this string has been localized for the current system culture.
        public NullReferenceException(String message)
            : base(message)
        {
        }

Same methods

NullReferenceException::NullReferenceException ( )
NullReferenceException::NullReferenceException ( String message, Exception innerException )
NullReferenceException