how to type cast string to int c# code example
Example 1: how to convert string to int in c#
string a = ("2");
int b = Convert.ToInt16(a)
Example 2: c# convert string to int
int number;
bool result = int.TryParse("12345", out number);
if(result)
{
// Do whatever.
}
else
{
// Failed to parse.
}