Advertisement
Fhernd

SinOperadorChecked

May 2nd, 2017
477
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.38 KB | None | 0 0
  1. class SinOperadorChecked
  2. {
  3.     static void Main()
  4.     {
  5.         // Este ejemplo no produce error en tiempo de compilación.
  6.         int diez = 10;
  7.         int i = 2147483647 + diez;
  8.  
  9.         // Por defecto, la sentencia anterior no produce ninguna
  10.         // excepción en tiempo de ejecución.
  11.  
  12.         Console.WriteLine(i);   // El valor calculado es -2.147.483.639
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement