c# int.tryparse code example
Example 1: c# tryparse int
bool success = Int32.TryParse(value, out number);
if (success)
{
Console.WriteLine("Converted '{0}' to {1}.", value, number);
}
Example 2: c sharp tryparse
// Any Parse() function has a TryParse function, which returns
// 'true' on a success and 'false' on a failure. On a succes
// it also saves the conerted value in the second parameter.
string value = "160"
int number;
bool success = Int32.TryParse(value, out number);
// success = true
// number = 160
Example 3: how to parse a string to an integer c#
string str = "10s";
int x = Convert.ToInt32(str);
Console.WriteLine(x);