Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- 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");
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement