.net parse string as int code example
Example 1: how to parse a string to an integer c#
string str = "10s";
int x = Convert.ToInt32(str);
Console.WriteLine(x);
Example 2: parsing string to int c#
string userInput = Console.ReadLine();
int convert;
Int32.TryParse(userInput, out convert); // Converting String to int