type casting c# string to int code example
Example 1: string to int c#
int x = Int32.Parse("1234");
Example 2: c# how to convert string to int
string str = "100";
int x = Int32.Parse(str); // or int.Parse();
Console.WriteLine(x);
Example 3: how to convert string to int in c#
string a = ("2");
int b = Convert.ToInt16(a)
Example 4: c# convert string to int
int number;
bool result = int.TryParse("12345", out number);
if(result)
{
// Do whatever.
}
else
{
// Failed to parse.
}