convert string en int c# 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: c# string to int
int result = Int32.Parse(input);