60
1
using System;
2
3
public static class Program
4
{
5
/// <summary>
6
/// Rounds datetime up, down or to nearest minutes and all smaller units to zero
7
/// </summary>
8
/// <param name="dt">static extension method</param>
9
/// <param name="rndmin">mins to round to</param>
10
/// <param name="directn">Up,Down,Nearest</param>
11
/// <returns>rounded datetime with all smaller units than mins rounded off</returns>
12
public static DateTime RoundToNearestMinuteProper(this DateTime dt, int rndmin, RoundingDirection directn)
13
{
14
if (rndmin == 0) //can be > 60 mins
15
return dt;
16
17
TimeSpan d = TimeSpan.FromMinutes(rndmin); //this can be passed as a parameter, or use any timespan unit FromDays, FromHours, etc.
18
19
long delta = 0;
20
Int64 modTicks = dt.Ticks % d.Ticks;
21
22
switch (directn)
23
{
24
case RoundingDirection.Up:
Cached Result
8/3/2018 10:15:00 AM
8/3/2018 10:00:00 AM
8/3/2018 10:15:00 AM
8/3/2018 10:00:00 AM
8/3/2018 10:15:00 AM