
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
C# int.Parse vs int.TryParse Methods
Convert a string representation of number to an integer,using the int.TryParse and intParse method in C#.
If the string cannot be converted, then the int.TryParse method returns false i.e. a Boolean value, whereas int.Parse returns an exception.
Let us see an example of int.Parse method −
Example
using System.IO; using System; class Program { static void Main() { int res; string myStr = "120"; res = int.Parse(myStr); Console.WriteLine("String is a numeric representation: "+res); } }
Output
String is a numeric representation: 120
Let us see an example of int.TryParse method.
Example
using System.IO; using System; class Program { static void Main() { bool res; int a; string myStr = "120"; res = int.TryParse(myStr, out a); Console.WriteLine("String is a numeric representation: "+res); } }
Output
String is a numeric representation: True
Advertisements