Parse v. TryParse

120,201

Solution 1

Parse throws an exception if it cannot parse the value, whereas TryParse returns a bool indicating whether it succeeded.

TryParse does not just try/catch internally - the whole point of it is that it is implemented without exceptions so that it is fast. In fact the way it is most likely implemented is that internally the Parse method will call TryParse and then throw an exception if it returns false.

In a nutshell, use Parse if you are sure the value will be valid; otherwise use TryParse.

Solution 2

If the string can not be converted to an integer, then

  • int.Parse() will throw an exception
  • int.TryParse() will return false (but not throw an exception)

Solution 3

TryParse and the Exception Tax

Parse throws an exception if the conversion from a string to the specified datatype fails, whereas TryParse explicitly avoids throwing an exception.

Solution 4

The TryParse method allows you to test whether something is parseable. If you try Parse as in the first instance with an invalid int, you'll get an exception while in the TryParse, it returns a boolean letting you know whether the parse succeeded or not.

As a footnote, passing in null to most TryParse methods will throw an exception.

Share:
120,201

Related videos on Youtube

vishwas kumar
Author by

vishwas kumar

Bad programming is easy. Idiots can learn it in 21 days, even if they are dummies. --Teach Yourself Programming In Ten Years

Updated on July 08, 2022

Comments

  • vishwas kumar
    vishwas kumar almost 2 years

    What is the difference between Parse() and TryParse()?

    int number = int.Parse(textBoxNumber.Text);
    
    // The Try-Parse Method
    int.TryParse(textBoxNumber.Text, out number);
    

    Is there some form of error-checking like a Try-Catch Block?

  • Joel Coehoorn
    Joel Coehoorn over 15 years
    "internally the Parse method will call TryParse" Except that Parse pre-dates TryParse by several versions. Of course, they could have moved the core implementation to TryParse...
  • Meydjer Luzzoli
    Meydjer Luzzoli over 15 years
    @Joel - I assumed they would have moved the implementation, but I just had a look with reflector and they are separate implementations with exactly the same code other than one has 'throw ...' and one has 'return false'. I wonder why they aren't consolidated?!
  • Meydjer Luzzoli
    Meydjer Luzzoli over 15 years
    Although, thinking about it, Parse throws a number of different exceptions so if all it had was a bool from TryParse then it wouldn't know which one to throw.
  • Ray Booysen
    Ray Booysen over 15 years
    TryParse will throw an exception if you pass null in for most integral TryParse methods.
  • Christian Madsen
    Christian Madsen over 14 years
    TryParse does return the value through parameter two which is specified with the out keyword.
  • Christian Madsen
    Christian Madsen over 14 years
    Great link. I am surprised that no one hasn't yet started the "which one is best or which coding practice should be applied" discussion.
  • Jon
    Jon over 11 years
    "use Parse if you are sure the value will be valid". I'd add, "but you acknowledge the possibility you might be wrong". If you were 100% sure it can parse, then you could just as correctly use TryParse which might be faster.
  • Paul Draper
    Paul Draper about 11 years
    And by "different exceptions", @GregBeech means the message, not the class.
  • Paul Draper
    Paul Draper about 11 years
    But does TryParse return true or false? That's how you'll know if it was "valid".
  • Andrew Neely
    Andrew Neely almost 9 years
    The first code snippit doesn't do anything, since tmpint will already be set to zero if the string is not able to be parsed as an int.
  • Palec
    Palec almost 7 years
    You don't need to initialize startDate and endDate as DateTime.TryParse will always overwrite them with DateTime.MinValue. If incorrect date representations should be converted to a different value, check the return value of DateTime.TryParse and if it is false, set the value explicitly.
  • Kiquenet
    Kiquenet almost 7 years
    Using DateTime? (DateTime nullable)
  • Ricardo González
    Ricardo González about 6 years
    Passing null to basic types (int, double, DateTime, etc.) will NOT throw an exception
  • Alexandru Antochi
    Alexandru Antochi over 5 years
    What if I use int.TryParse(some_method_that_throws_exception(), out int test)? Will it catch any exception or only the ones related to parsing?
  • Rob
    Rob over 5 years
    @AlexandruAntochi You should not ask a question as a comment. This will make it almost impossible for others to benefit from useful answers. However, to make it worth your while, the answer to your question is no, int.TryParse will not throw at all. If the method fail to parse, it will only reflect this by a return value of false. This makes it convenient to use if(int.TryParse… to only do something if the parse succeeds.