Advertisement
Fhernd

UsoOverflowException.cs

Jul 29th, 2014
4,488
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.32 KB | None | 0 0
  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. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement