how to cnvert from string 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: convert string to number C#
int x = 0;
Int32.TryParse(TextBoxD1.Text, out x);