What is the difference between int.Parse() and
Convert.toInt32().
Answers were Sorted based on User's Feedback
I got this example through net..hope it helps you.
Both(Convert.ToInt32 and int.Parse) will return the same
result in
most of the cases. But null is handled differently.
Consider the following example…
string strCount="32";
int count1 = Convert.ToInt32(strCount);
int count2 = int.Parse(strCount);
If you print the result it will be same ie 32.
If suppose the string is the null (see the example below),
Convert.ToInt32 will return zero.
but the int.Parse will throw ArgumentNullException error.
string strCount=null;
int count1 = Convert.ToInt32(strCount);
int count2 = int.Parse(strCount); // Error
Is This Answer Correct ? | 50 Yes | 4 No |
Answer / jyoti magdum
Both(Convert.ToInt32 and int.Parse) will return the same
result in
most of the cases.
string strCount="32";
int count1 = Convert.ToInt32(strCount);
int count2 = int.Parse(strCount);
If you print the result it will be same ie 32.
If suppose the string is the null (see the example below),
Convert.ToInt32 will throw ArgumentNullException error.
and the int.Parse will throw ArgumentNullException error.
string strCount=null;
int count1 = Convert.ToInt32(strCount);//Error
int count2 = int.Parse(strCount); // Error
Is This Answer Correct ? | 2 Yes | 5 No |
What is oledbconnection c#?
What is the difference between virtual and override in c#?
If casting fails what type of exception is thrown?
What is the advantage of singleton class?
What is the size of a decimal?
Is everything an object c#?
What is thread and explain states of a thread in c#?
What is meant by desktop application?
When you inherit a protected class-level variable, who is it available to?
Why do we use struct in c#?
What is exe in c#?
What is the name of the implicit input parameter of a set accessor for any property?