using System;
class ExceptionTab
{
public static void Main()
{
int[] tabGrand;
try
{
tabGrand = new int[2000000000];
}
catch(OutOfMemoryException err)
{
Console.WriteLine("Exception mémoire: "+err);
}
}
}