Created
May 13, 2014 15:04
-
-
Save jdowd7/21f905e9033c0a8a3e01 to your computer and use it in GitHub Desktop.
Rounds time to :00 or :05, C#, roundtime
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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