Convert what you read from console into int : Convert « Data Types « C# / C Sharp






Convert what you read from console into int

   

using System;

public class Program {
   public static void Main(){
      int newInteger = 0;
      try {
        System.Console.WriteLine("Enter an integer:");
        newInteger = System.Convert.ToInt32(System.Console.ReadLine());
      }
      catch (System.ArgumentNullException) {
        System.Console.WriteLine("String is null.");
      }
      catch (System.FormatException) {
        System.Console.WriteLine("String does not consist of an " +
                "optional sign followed by a series of digits.");
      } 
      catch (System.OverflowException) {
        System.Console.WriteLine(
        "Overflow in string to int conversion.");
      }

      System.Console.WriteLine("Your integer as a double is {0}",System.Convert.ToDouble(newInteger));
   }
}

   
    
    
  








Related examples in the same category

1.Convert string to int
2.Hidden among the To(integral-type) methods are overloads that parse numbers in another base:
3.The source and target types must be one of the "base" types. ChangeType also accepts an optional IFormatProvider argument. Here's an example:
4.Convert string to byte array with for loop
5.Convert byte array to string
6.Convert a decimal to the binary format
7.Convert.ToString Converts the value of a 32-bit signed integer to its equivalent string representation in a specified base.
8.Convert double to bool
9.Convert double to string
10.Convert console input to double
11.Converts int to string in a specified base.
12.Convert double to int
13.Convert double to bool and string
14.Convert string to char
15.Convert various data types to integer 64
16.Returns an object of the specified type and whose value is equivalent to the specified object.
17.Convert.ChangeType Method (Object, TypeCode, IFormatProvider)
18.Converts a Unicode character array to an 8-bit unsigned integer array.
19.Convert.ToBase64CharArray() and Convert.FromBase64CharArray
20.Converts byte to Boolean
21.Converts decimal to Boolean value.
22.Converts double to Boolean value.
23.Converts short to Boolean value.
24.Converts int to Boolean value.
25.Converts long to Boolean value.
26.Converts string to Boolean
27.Converts Boolean value to byte.
28.Converts Unicode character to byte
29.Converts decimal number to byte
30.Converts double-precision floating-point number to byte
31.Convert string to bool with exception catch
32.Converts a string of length 4 to a 32-bit unsigned integer.
33.Converts a 32-bit unsigned integer to a string of length 4.
34.Conversion between C# string and packed string representation.
35.Convert object value to double or int