Possible Duplicate:
C# char to int
I have come across many solutions to this but I can't get it right by trying any of them. How can I convert string values like "230", "73400" or bigger to int values in c#? Will I have to use a library? Is there a way to do it natively to c#? Lets assume:
string c = "270"; int i;
How can I get i to be 270 as well?