dotnet cast 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);
int x = Int32.Parse("1234");
string str = "100";
int x = Int32.Parse(str); // or int.Parse();
Console.WriteLine(x);