how efficient is Convert.Int in C# code example
Example 1: string to int c#
int x = Int32.Parse("1234");
Example 2: c# string to int
//Input must be numeric 0-9
string input = Console.ReadLine();
//Converts the string input to int
int X = int.Parse(input);
//Prints the X value
Console.WriteLine(X);