string int c# code example
Example 1: convert string to number C#
int x = 0;
Int32.TryParse(TextBoxD1.Text, out x);
Example 2: c# convert string to int
// Ask user for fave number
Console.Write("Enter your favorite number!: ");
// Turn that answer into an int
int faveNumber = Convert.ToInt32(Console.ReadLine());