Isn't it better to use a single try catch instead of tons of TryParsing and other error handling sometimes?
- by Ryan Peschel
I know people say it's bad to use exceptions for flow control and to only use exceptions for exceptional situations, but sometimes isn't it just cleaner and more elegant to wrap the entire block in a try-catch?
For example, let's say I have a dialog window with a TextBox where the user can type input in to be parsed in a key-value sort of manner.
…