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