|
|
| | Difference between Int32.Parse,Convert.Int32Posted By :Syed Shakeer Hussain Posted Date :28/06/2009 Points :10 Category :C# |
|
Int32.Parse Method: ------------------- Converts the string representation of a number to its 32-bit signed integer equivalent. -When s is a null reference, it will throw ArgumentNullException. -If s is other than integer value, it will throw FormatException. -When s represents a number out of range, it will throw OverflowException.
Convert.ToInt32(string): ------------------------- Converts the specified string representation of 32-bit signed integer equivalent. This calls in turn Int32.Parse () method. -When s is a null reference, it will return 0 rather than throw ArgumentNullException. -If s is other than integer value, it will throw FormatException. -When s represents a number out of range, it will throw OverflowException.
Int32.TryParse Method: ---------------------- Converts the specified string representation of 32-bit signed integer equivalent to out variable, and returns true if it is parsed successfully, false otherwise. -When s is a null reference, it will return 0. -If s is other than an integer value, the out variable will have 0. -When s represents a number out of range, the out variable will have 0.
|
| | | You can also find related Interview Question to
Difference between Int32.Parse,Convert.Int32
below:
| |
| | Quick Links For Interview Questions Categories: | |
| Find questions, FAQ's and their answers related to .NET, C#, Vb.Net, Sql Server and many more. |
| | | Now you can find lots of .NET, C#, Vb.Net, SQL Server,Windows, ASP.Net related Questions and their Answers here at www.dotnetspark.com. Our aim is to help you pass your certification Exams (MCP, MCSD, MCAD etc.,) with flying scores and get good name in your company.
So, Start looking our Interview Question section daily and improve your .NET Skills. You can also help others by posting Interview Questions and their Answers in this section.
|
|