Click here to Skip to main content
15,884,176 members
Articles / Mobile Apps

How To Round Time by a Specified Number of Minutes?

Rate me:
Please Sign up or sign in to vote.
2.93/5 (11 votes)
23 Jan 2007CPOL 62.6K   20   8
This is an algorithm formula to calculate round time...

Introduction

This is a very simple code to show how we can calculate the round time in C# .NET...

Using the Code

You can write the below code in your Windows application form_load method and test it...

C#
// Sample time: 01:07:00
TimeSpan t = new TimeSpan(1, 7, 0);

// The round number, here is a quarter...
int Round = 15;

// Count of round number in this total minutes...
double CountRound = (t.TotalMinutes / Round);

// The main formula to calculate round time...
int Min = (int)Math.Truncate(CountRound + 0.5) * Round;

// Now show the result...
TimeSpan tRes = new TimeSpan(0, Min, 0);
MessageBox.Show(tRes.ToString());

You can change the Round number from 15 to every number you want round on, for example 5 or 10 or ...

Good luck!

History

  • 23rd January, 2007: Initial post

License

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


Written By
Software Developer (Senior)
Iran (Islamic Republic of) Iran (Islamic Republic of)
Alireza Naghizadeh

Comments and Discussions

 
Generalfor include seconds in round time Pin
junyr210-Apr-10 5:12
junyr210-Apr-10 5:12 
QuestionRound to nearest value or to a future time value? Pin
abentov1-Mar-07 3:46
abentov1-Mar-07 3:46 
GeneralDateTruncate Pin
PIEBALDconsult7-Feb-07 9:53
mvePIEBALDconsult7-Feb-07 9:53 
GeneralWorks only in .net 2 Pin
ckl_887-Feb-07 9:33
ckl_887-Feb-07 9:33 
GeneralRe: Works only in .net 2 Pin
Alireza Naghizadeh7-Feb-07 18:41
Alireza Naghizadeh7-Feb-07 18:41 
GeneralRe: Works only in .net 2 Pin
ckl_888-Feb-07 6:33
ckl_888-Feb-07 6:33 
GeneralGreat article Pin
aprenot24-Jan-07 5:58
aprenot24-Jan-07 5:58 
GeneralRe: Great article Pin
Alireza Naghizadeh26-Jan-07 23:25
Alireza Naghizadeh26-Jan-07 23:25 

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.