"c# round datetime" Code Answer's

You're definitely familiar with the best coding language C# that developers use to develop their projects and they get all their queries like "c# round datetime" answered properly. Developers are finding an appropriate answer about c# round datetime related to the C# coding language. By visiting this online portal developers get answers concerning C# codes question like c# round datetime. Enter your desired code related query in the search bar and get every piece of information about C# code related question on c# round datetime. 

c# round datetime

By Zohan3456Zohan3456 on Aug 24, 2020
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));
}

Add Comment

0

All those coders who are working on the C# based application and are stuck on c# round datetime can get a collection of related answers to their query. Programmers need to enter their query on c# round datetime related to C# code and they'll get their ambiguities clear immediately. On our webpage, there are tutorials about c# round datetime for the programmers working on C# code while coding their module. Coders are also allowed to rectify already present answers of c# round datetime while working on the C# language code. Developers can add up suggestions if they deem fit any other answer relating to "c# round datetime". Visit this developer's friendly online web community, CodeProZone, and get your queries like c# round datetime resolved professionally and stay updated to the latest C# updates. 

C# answers related to "c# round datetime"

View All C# queries

C# queries related to "c# round datetime"

Browse Other Code Languages

CodeProZone