string into int c# code example
Example 1: parsing string to int c#
string userInput = Console.ReadLine();
int convert;
Int32.TryParse(userInput, out convert); // Converting String to int
Example 2: convert string to number C#
int x = 0;
Int32.TryParse(TextBoxD1.Text, out x);