Initializes an instance of the OutOfMemoryException class.
Initializes an instance of the OutOfMemoryException class with default properties.
[Visual Basic] Overloads Public Sub New()
[C#] public OutOfMemoryException();
[C++] public: OutOfMemoryException();
[JScript] public function OutOfMemoryException();
Initializes an instance of OutOfMemoryException with a specified message.
[Visual Basic] Overloads Public Sub New(String)
[C#] public OutOfMemoryException(String);
[C++] public: OutOfMemoryException(String*);
[JScript] public function OutOfMemoryException(String);
Initializes an instance of OutOfMemoryException with a specified message and the exception that is the root cause of this exception.
[Visual Basic] Overloads Public Sub New(String, Exception)
[C#] public OutOfMemoryException(String, Exception);
[C++] public: OutOfMemoryException(String*, Exception);
[JScript] public function OutOfMemoryException(String, Exception);
OutOfMemoryException Class | OutOfMemoryException Members | System Namespace