Skip to content

Instantly share code, notes, and snippets.

@underwhelmed
Created October 22, 2010 16:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save underwhelmed/640843 to your computer and use it in GitHub Desktop.
Save underwhelmed/640843 to your computer and use it in GitHub Desktop.
What's wrong with this method?
public bool IsValidSmallDateTime(DateTime date)
{
return date >= Convert.ToDateTime("1/1/1900") || date <= Convert.ToDateTime("6/6/2079");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment