using System; using System.Collections; namespace Articulos.Cap04.Excepciones.Parte5 { public sealed class UsoOverflowException { public static void Main() { checked { int suma = Int32.MaxValue + Int32.Parse("1"); } } } }