Click here to Skip to main content
15,891,607 members
Articles / Programming Languages / C# 5.0

How to Convert a Date Time to “X minutes ago” in C#

Rate me:
Please Sign up or sign in to vote.
4.96/5 (15 votes)
7 May 2014CPOL 50.4K   18   8
How to Convert a Date Time to “X minutes ago” in C#

In one of our previous posts, we saw how can we convert a Date Time value to “X Minutes Ago” feature using jQuery. Today, in this post, we will see how we can achieve the same functionality in C#. In this post, we will write a C# function that will take a DateTime as a parameter and return the appropriate string.

The function to convert DateTime to a “Time Ago” string is as below:

C#
public static string TimeAgo(DateTime dt)
{
    TimeSpan span = DateTime.Now - dt;
    if (span.Days > 365)
    {
        int years = (span.Days / 365);
        if (span.Days % 365 != 0)
            years += 1;
        return String.Format("about {0} {1} ago", 
        years, years == 1 ? "year" : "years");
    }
    if (span.Days > 30)
    {
        int months = (span.Days / 30);
        if (span.Days % 31 != 0)
            months += 1;
        return String.Format("about {0} {1} ago", 
        months, months == 1 ? "month" : "months");
    }
    if (span.Days > 0)
        return String.Format("about {0} {1} ago", 
        span.Days, span.Days == 1 ? "day" : "days");
    if (span.Hours > 0)
        return String.Format("about {0} {1} ago", 
        span.Hours, span.Hours == 1 ? "hour" : "hours");
    if (span.Minutes > 0)
        return String.Format("about {0} {1} ago", 
        span.Minutes, span.Minutes == 1 ? "minute" : "minutes");
    if (span.Seconds > 5)
        return String.Format("about {0} seconds ago", span.Seconds);
    if (span.Seconds <= 5)
        return "just now";
    return string.Empty;
}

You can call the function something like below:

C#
Console.WriteLine(TimeAgo(DateTime.Now));
Console.WriteLine(TimeAgo(DateTime.Now.AddMinutes(-5)));
Console.WriteLine(TimeAgo(DateTime.Now.AddMinutes(-59)));
Console.WriteLine(TimeAgo(DateTime.Now.AddHours(-2)));
Console.WriteLine(TimeAgo(DateTime.Now.AddDays(-5)));
Console.WriteLine(TimeAgo(DateTime.Now.AddMonths(-3)));

The output looks something like below:

datetime-time-ago-C#

Hope this post helps you. Keep learning and sharing!

License

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


Written By
Founder Rebin Infotech
India India
A passionate developer with over 10 years of experience and building my software company code by code. Experience withMS Technologies like .Net | MVC | Xamarin | Sharepoint | MS Project Server and PhP along with open source CMS Systems like Wordpress/DotNetNuke etc.

Love to debug problems and solve them. I love writing articles on my website in my spare time. Please visit my Website for more details and subscribe to get technology related tips/tricks. #SOreadytohelp

Comments and Discussions

 
QuestionComment Pin
Mohan Rajesh Komatlapalli5-Nov-14 2:11
Mohan Rajesh Komatlapalli5-Nov-14 2:11 
AnswerRe: Comment Pin
Nitesh Kejriwal5-Nov-14 2:33
professionalNitesh Kejriwal5-Nov-14 2:33 
QuestionHow about "X minutes from now"? Pin
StevieLee8-May-14 6:51
StevieLee8-May-14 6:51 
AnswerRe: How about "X minutes from now"? Pin
Nitesh Kejriwal8-May-14 6:56
professionalNitesh Kejriwal8-May-14 6:56 
AnswerRe: How about "X minutes from now"? Pin
Nitesh Kejriwal8-May-14 18:43
professionalNitesh Kejriwal8-May-14 18:43 
GeneralRe: How about "X minutes from now"? Pin
Member 107476419-May-14 1:10
Member 107476419-May-14 1:10 
QuestionManagement of <5s Pin
romlel598-May-14 3:32
romlel598-May-14 3:32 
AnswerRe: Management of <5s Pin
Nitesh Kejriwal8-May-14 3:56
professionalNitesh Kejriwal8-May-14 3:56 

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.