Mega Code Archive

 
Categories / C# / Data Types
 

Convert long to integer and catch the OverflowException

using System; using System.Globalization; public class Example {     public static void Main()     {         long lNumber = 111111111111111;         try         {             int number1 = (int)lNumber;             Console.WriteLine(number1);         }         catch (OverflowException)         {             Console.WriteLine("{0} is out of range of an Int32.", lNumber);         }     } }