Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class SinOperadorChecked
- {
- static void Main()
- {
- // Este ejemplo no produce error en tiempo de compilación.
- int diez = 10;
- int i = 2147483647 + diez;
- // Por defecto, la sentencia anterior no produce ninguna
- // excepción en tiempo de ejecución.
- Console.WriteLine(i); // El valor calculado es -2.147.483.639
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement