0
kicks
.NET Tip: Converting Strings to Numbers
First, take a look at the Convert class. The Convert class offers methods to convert to and from every base data type, but for the purpose of this tip I'm only going to use the Convert.ToInt32() method. The method accepts a string parameter and returns an integer. If you pass in a string containing a valid integer value, the method returns an integer as expected.