Skip to content

Instantly share code, notes, and snippets.

@pregress
Created August 8, 2012 11:17
Show Gist options
  • Select an option

  • Save pregress/3294335 to your computer and use it in GitHub Desktop.

Select an option

Save pregress/3294335 to your computer and use it in GitHub Desktop.
DateTimeExtensions
public static class DateTimeExtensions
{
public static bool IsToday(this DateTime currentDate)
{
return (currentDate >= DateTime.Today && currentDate < DateTime.Today.AddHours(24));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment