c# convert schar to int code example
Example 1: string to int c#
int x = Int32.Parse("1234");
Example 2: how can convert string to int csharp
Int16.Parse("100");
Example 3: 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);