.net convert string to int code example
Example 1: string to int c#
int x = Int32.Parse("1234");
Example 2: how to parse a string to an integer c#
string str = "10s";
int x = Convert.ToInt32(str);
Console.WriteLine(x);
Example 3: how to convert string to int in c#
string a = ("2");
int b = Convert.ToInt16(a)