OutOfMemoryException Exception : Buildin Exceptions « Development Class « C# / C Sharp
- C# / C Sharp
- Development Class
- Buildin Exceptions
OutOfMemoryException Exception
using System;
class MainClass
{
public static void Main()
{
int [] LargeArray;
try
{
LargeArray = new int [2000000000];
}
catch(OutOfMemoryException)
{
Console.WriteLine("The CLR is out of memory.");
}
}
}
Related examples in the same category