Contact: aviboots(AT)netvision.net.il
39,974 questions
51,918 answers
573 users
using System; class Program { static void Main() { // error CS0220: The operation overflows at compile time in checked mode // int n1 = 2147483647 + 30; int n2 = unchecked(2147483647 + 30); Console.Write(n2); } } /* run: -2147483619 */