Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class UsoOperadorChecked
- {
- static void Main()
- {
- int diez = 10;
- // Expresión con operador checked
- Console.WriteLine(checked(2147483647 + diez));
- // Bloque de código con operador checked
- checked
- {
- int i = 2147483647 + diez;
- Console.WriteLine(i);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement