System.Nullable vs. TryParse Revisited

Navigating TryParse with nullable types

Published on Saturday, March 1, 2008

As a follow-up to my system.nullable vs. tryparse post, I've posted the source code for the nullable parser. I use this code in nearly all of my projects to help with parsing nullable values. It makes parsing nullable objects much easier, and mirrors the functionality of the existing TryParse methods that the framework has made us accustomed to.

Download the C# file