Skip to content

Instantly share code, notes, and snippets.

@MaxVonBPA
Created March 9, 2016 12:17
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 MaxVonBPA/b88c604196dfb39b59db to your computer and use it in GitHub Desktop.
Save MaxVonBPA/b88c604196dfb39b59db to your computer and use it in GitHub Desktop.
csharp in between
public static bool Between(DateTime input, DateTime date1, DateTime date2)
{
return (input > date1 && input < date2);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment