Skip to content

Instantly share code, notes, and snippets.

@atifaziz
Created October 18, 2009 21:08
Show Gist options
  • Save atifaziz/212858 to your computer and use it in GitHub Desktop.
Save atifaziz/212858 to your computer and use it in GitHub Desktop.
// http://twitter.com/raboof/statuses/4974353119
static partial class TryParse
{
public static int? Int32(string str)
{
return Int32(str, null);
}
public static int? Int32(string str, int? defaultValue)
{
int result;
return int.TryParse(str, out result) ? result : defaultValue;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment