I am using C#,and wanted to know the main difference between the two and which one is preferred to use while coding.
|
If you've got a string, and you expect it to always be an integer (say, if some web service is handing you an integer in string format), you'd use Int32.Parse(). If you're collecting input from a user, you'd generally user Int32.TryParse(), since it allows you more fine-grained control over the situation when the user enters in invalid input. Convert.ToInt32() takes an object as its argument, and I believe it invokes Int32.TryParse() when it finds that the object taken as the argument is a string. Convert.ToInt32 also does not throw ArgumentNullException when it's argument is null the way Int32.Parse() does. That also means that Convert.ToInt32() is probably a wee bit slower than Int32.Parse(), though in practice, unless you're doing a very large numbers of iterations in a loop, you'll never notice it. |
|||||||||||||||||
|
|
Have a look in reflector: int.Parse("32"):
which is a call to:
Convert.ToInt32("32"):
As the first (Dave M's) comment says. |
|||||||
|
|
No difference as such. Except 1 thing where Convert.ToInt32 returns 0 when argument is null |
|||||
|
|
The difference is this:
|
||||
|
|
|
TryParse is faster...
Hope this helps. |
|||||
|
|
Convert.ToInt32 allows null value, it doesn't throw any errors Int.parse does not allow null value, it throws an ArgumentNullException error. |
||||
|
|
|
for clarification open console application, just copy below code and paste it in
|
||||
|
|
has 19 overloads or 19 different ways that you can call it. Maybe more in 2010 versions. It will attempt to convert from the following TYPES;
and it also has a number of other methods; one to do with a number base and 2 methods involve a Parse on the other hand only has 4 overloads or 4 different ways you can call the method.
|
||||
|
|