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