parsh sting to int C# 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: how to convert string to int in c#
string a = ("2");
int b = Convert.ToInt16(a)