Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. using System;
  2. using System.Collections;
  3.  
  4. namespace Articulos.Cap04.Excepciones.Parte5
  5. {
  6.     public sealed class UsoOverflowException
  7.     {
  8.         public static void Main()
  9.         {
  10.             checked
  11.             {
  12.                 int suma = Int32.MaxValue + Int32.Parse("1");
  13.             }
  14.         }
  15.     }
  16. }