Search
 
SCRIPT & CODE EXAMPLE
 

CSHARP

C# today, yesterday, last week, last month

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";
}
Comment

PREVIOUS NEXT
Code Example
Csharp :: unity using tmpro not working 
Csharp :: c# windows form BalloonTipIcon close 
Csharp :: C# count specific words in string 
Csharp :: eleventy set default layout 
Csharp :: c# xamarin forms use AssetManager to get text file 
Csharp :: extension method c# 
Csharp :: get image information using c# 
Csharp :: custom vs code snippet 
Csharp :: how to create a point c# 
Csharp :: dotnet core webapp 
Csharp :: string stringbuilder c# 
Csharp :: unity in app review 
Csharp :: appsettings in console application c# 
Csharp :: leantween move ui 
Csharp :: c# filesystemwatcher 
Csharp :: c# window instantly close 
Csharp :: 0.8 dikali 0.8 
Csharp :: c# .net stringify data query 
Csharp :: git set origin 
Html :: how to link css to html 
Html :: sweetalert2 cdn 
Html :: html input price 
Html :: disable-html-form-input-autocomplete-autofill 
Html :: lorum picsum 
Html :: html form enctype 
Html :: conveert text to uppercase in input field 
Html :: NavBar Bootstrap v4 Fix 
Html :: html make file input only images 
Html :: material icons cdn 
Html :: add tab icon html 
ADD CONTENT
Topic
Content
Source link
Name
1+7 =