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

C# today, yesterday, last week, last month

By SonicSonic on Oct 25, 2020
public static string ToTimeSinceString(this DateTime value)
{
    const int SECOND = 1;
    const int MINUTE = 60 * SECOND;
    const int HOUR = 60 * MINUTE;
    const int DAY = 24 * HOUR;
    const int MONTH = 30 * DAY;

    TimeSpan ts = new TimeSpan(DateTime.Now.Ticks - value.Ticks);
    double seconds = ts.TotalSeconds;

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

    if (seconds < 60 * MINUTE)
        return ts.Minutes + " minutes ago";

    if (seconds < 120 * MINUTE)
        return "an hour ago";

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

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

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

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

    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# today, yesterday, last week, last month can get a collection of related answers to their query. Programmers need to enter their query on C# today, yesterday, last week, last month related to C# code and they'll get their ambiguities clear immediately. On our webpage, there are tutorials about C# today, yesterday, last week, last month for the programmers working on C# code while coding their module. Coders are also allowed to rectify already present answers of C# today, yesterday, last week, last month while working on the C# language code. Developers can add up suggestions if they deem fit any other answer relating to "C# today, yesterday, last week, last month". Visit this developer's friendly online web community, CodeProZone, and get your queries like C# today, yesterday, last week, last month resolved professionally and stay updated to the latest C# updates. 

C# answers related to "C# today, yesterday, last week, last month"

View All C# queries

C# queries related to "C# today, yesterday, last week, last month"

Browse Other Code Languages

CodeProZone