Skip to content

Instantly share code, notes, and snippets.

@jdowd7
Created May 13, 2014 15:04
Show Gist options
  • Save jdowd7/21f905e9033c0a8a3e01 to your computer and use it in GitHub Desktop.
Save jdowd7/21f905e9033c0a8a3e01 to your computer and use it in GitHub Desktop.
Rounds time to :00 or :05, C#, roundtime
private DateTime RoundUp(DateTime dt, TimeSpan d)
{
return new DateTime(((dt.Ticks + d.Ticks - 1) / d.Ticks) * d.Ticks);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment