"c# 2 timespan return yesterday" 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# 2 timespan return yesterday" answered properly. Developers are finding an appropriate answer about c# 2 timespan return yesterday related to the C# coding language. By visiting this online portal developers get answers concerning C# codes question like c# 2 timespan return yesterday. Enter your desired code related query in the search bar and get every piece of information about C# code related question on c# 2 timespan return yesterday. 

c# 2 timespan return yesterday

By MurkrowMurkrow on Jun 12, 2020
const int SECOND = 1;
const int MINUTE = 60 * SECOND;
const int HOUR = 60 * MINUTE;
const int DAY = 24 * HOUR;
const int MONTH = 30 * DAY;

var ts = new TimeSpan(DateTime.UtcNow.Ticks - yourDate.Ticks);
double delta = Math.Abs(ts.TotalSeconds);

if (delta < 1 * MINUTE)
  return ts.Seconds == 1 ? "one second ago" : ts.Seconds + " seconds ago";

if (delta < 2 * MINUTE)
  return "a minute ago";

if (delta < 45 * MINUTE)
  return ts.Minutes + " minutes ago";

if (delta < 90 * MINUTE)
  return "an hour ago";

if (delta < 24 * HOUR)
  return ts.Hours + " hours ago";

if (delta < 48 * HOUR)
  return "yesterday";

if (delta < 30 * DAY)
  return ts.Days + " days ago";

if (delta < 12 * MONTH)
{
  int months = Convert.ToInt32(Math.Floor((double)ts.Days / 30));
  return months <= 1 ? "one month ago" : months + " months ago";
}
else
{
  int years = Convert.ToInt32(Math.Floor((double)ts.Days / 365));
  return years <= 1 ? "one year ago" : years + " years ago";
}

Source: stackoverflow.com

Add Comment

0

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

C# answers related to "c# 2 timespan return yesterday"

View All C# queries

C# queries related to "c# 2 timespan return yesterday"

Browse Other Code Languages

CodeProZone