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