Click here to Skip to main content
15,885,278 members
Articles / Programming Languages / C#

Rounding a DateTime Object to a Defined Number of Minutes

Rate me:
Please Sign up or sign in to vote.
4.35/5 (6 votes)
23 Mar 2008CPOL 51.4K   22   4
A simple two line function to round a DateTime up, down, or to a nearest defined number of minutes

Introduction

Rounding a DateTime up (or down) to the nearest number of minutes seems a simple requirement, but is surprisingly unintuitive due to the relationships and different properties of DateTime and TimeSpan classes.

I've come across some pretty dreadful examples on the web, so thought I'd post a much simpler (and faster) one.

Using the Code

This function accepts the number of minutes to be rounded to.

C#
public enum eRoundingDirection { up, down, nearest }

public DateTime RoundDateTime(DateTime dt, int minutes, eRoundingDirection direction)

{
  TimeSpan t;

  switch (direction)
  {
    case eRoundingDirection.up:
      t = (dt.Subtract(DateTime.MinValue)).Add(new TimeSpan(0, minutes, 0)); break;
    case eRoundingDirection.down:
      t = (dt.Subtract(DateTime.MinValue)); break;
    default:
      t = (dt.Subtract(DateTime.MinValue)).Add(new TimeSpan(0, minutes / 2, 0)); break;
  }

  return DateTime.MinValue.Add(new TimeSpan(0, 
         (((int)t.TotalMinutes) / minutes) * minutes, 0));
}

Points of Interest

Why use "default:" instead of "nearest"? Simply because it saves defining a default value for the TimeSpan.

Integer math helps keep this function speedy, and avoids those tricky rounding errors in the milliseconds.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
CEO QuestMetrics
Australia Australia
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralSo so Pin
Luc Pattyn6-Mar-10 9:30
sitebuilderLuc Pattyn6-Mar-10 9:30 
GeneralExcellent code! Pin
Kebrite6-Feb-10 22:17
Kebrite6-Feb-10 22:17 
GeneralRe: Excellent code! Pin
Jason Sobell7-Feb-10 1:19
Jason Sobell7-Feb-10 1:19 
GeneralVery Interesting Pin
merlin98124-Mar-08 4:28
professionalmerlin98124-Mar-08 4:28 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.