How can I calculate date difference between two dates in Years.

For example: (Datetime.Now.Today() - 11/03/2007) in years.

link|improve this question

71% accept rate
2  
possible duplicate of How do I calculate someone's age in C#? – Ben Voigt Nov 8 '10 at 20:51
Credit for spotting the dupe goes to Doggett. – Ben Voigt Nov 8 '10 at 20:52
feedback

11 Answers

up vote 9 down vote accepted

Heres how:

TimeSpan span = DateTime.Now.Subtract(new DateTime(11, 3, 2007));
int years = (int) (span.Days / 365.25); // leap years included

That is only one of probably better methods, someone could probably find a way to do it via LINQ, but this is simple and to the point.

link|improve this answer
1  
That handles leap years on average, but it will be off by one for up to 18 hours out of each year. – Ben Voigt Nov 8 '10 at 19:48
1  
Using this method, the difference between 1/1/2007 and 1/1/2008 would be 0 years. Intuitively, it should be 1 year. – o. nate Nov 8 '10 at 21:16
Good point. I do not know any other effective way of doing this though... possibly add one to the day? – Richard J. Ross III Nov 8 '10 at 23:09
Thanks for this. In my case i had to store it in a double as I'm including days as well. – dahacker89 Aug 7 '11 at 23:58
feedback
int Years(DateTime start, DateTime end)
{
    return (end.Year - start.Year - 1) +
        (((end.Month > start.Month) ||
        ((end.Month == start.Month) && (end.Day >= start.Day))) ? 1 : 0);
}

EDIT: Ben pointed out the case where leap year affects the DayOfYear

link|improve this answer
This would say that 2008-Nov-02 is one year after 2007-Nov-03, most people would say it's one day short. – Ben Voigt Nov 8 '10 at 20:00
You are right. I've updated my code to go strictly off the Year, Month and Day properties. It gets a little uglier now but works for leap years. – dana Nov 8 '10 at 20:13
feedback

It's unclear how you want to handle fractional years, but perhaps like this:

DateTime now = DateTime.Now;
DateTime origin = new DateTime(2007, 11, 3);
int calendar_years = now.Year - origin.Year;
int whole_years = calendar_years - ((now.AddYears(-calendar_years) >= origin)? 0: 1);
int another_method = calendar_years - ((now.Month - origin.Month) * 32 >= origin.Day - now.Day)? 0: 1);
link|improve this answer
According to this method, 2/28/2009 is 1 year after 2/29/2008, whereas it seems like it should be slightly less than 1 year. I guess the handling of leap years is always going to be slightly unsatisfying. – o. nate Nov 8 '10 at 21:44
@o. nate: Fixed, maybe (using a trick found on that other question spotted by Doggett). I think something like Dana's solution may be necessary to fix the leap day case in both directions. – Ben Voigt Nov 8 '10 at 21:59
feedback
var totalYears = 
    (DateTime.Today - new DateTime(2007, 03, 11)).TotalDays
    / 365.2425;

Average days from Wikipedia/Leap_year.

link|improve this answer
feedback

If you're trying to get someone's age see this

How do I calculate someone's age in C#?

link|improve this answer
Or even if you're not.... good dupe spot, on a question with a totally different wording. – Ben Voigt Nov 8 '10 at 20:51
feedback

I implemented an extension method to get the number of years between two dates, rounded by whole months.

    /// <summary>
    /// Gets the total number of years between two dates, rounded to whole months.
    /// Examples: 
    /// 2011-12-14, 2012-12-15 returns 1.
    /// 2011-12-14, 2012-12-14 returns 1.
    /// 2011-12-14, 2012-12-13 returns 0,9167.
    /// </summary>
    /// <param name="start">
    /// Stardate of time period
    /// </param>
    /// <param name="end">
    /// Enddate of time period
    /// </param>
    /// <returns>
    /// Total Years between the two days
    /// </returns>
    public static double DifferenceTotalYears(this DateTime start, DateTime end)
    {
        // Get difference in total months.
        int months = ((end.Year - start.Year) * 12) + (end.Month - start.Month);

        // substract 1 month if end month is not completed
        if (end.Day < start.Day)
        {
            months--;
        }

        double totalyears = months / 12d;
        return totalyears;
    }
link|improve this answer
feedback

We had to code a check to establish if the difference between two dates, a start and end date was greater than 2 years.

Thanks to the tips above it was done as follows:

 DateTime StartDate = Convert.ToDateTime("01/01/2012");
 DateTime EndDate = Convert.ToDateTime("01/01/2014");
 DateTime TwoYears = StartDate.AddYears(2);

 if EndDate > TwoYears .....
link|improve this answer
feedback

Something along the lines of:

DateTime dt = new DateTime("2007", "03", "11")

Timespan ts = Datetime.Now.Today()  - dt

ts.TotalYears
link|improve this answer
I don't think that exists? msdn.microsoft.com/en-us/library/system.timespan.aspx – jcolebrand Nov 8 '10 at 19:50
Damn, your correct, sorry - get TotalDays and divide by 365 - what everyone else was writing Before I submitted the answer. – Mr Shoubs Nov 8 '10 at 19:51
feedback

I hope the link below helps

MSDN - DateTime.Subtract.Method (DateTime)

There's even examples for C# there. Just simply click the C# language tab.

Good luck

link|improve this answer
feedback

If you're dealing with months and years you need something that knows how many days each month has and which years are leap years.

Enter the Gregorian Calendar (and other culture-specific Calendar implementations).

While Calendar doesn't provide methods to directly calculate the difference between two points in time, it does have methods such as

DateTime AddWeeks(DateTime time, int weeks)
DateTime AddMonths(DateTime time, int months)
DateTime AddYears(DateTime time, int years)
link|improve this answer
feedback

.NET DateTime objects can be subtracted to give TimeSpan objects. Therefore subtract DateTime(2007,03,11) from Now(). Then use the TotalYears property to get a whole number of years.

Multiply the other properties as required to give a fractional year to month/day/hour/etc accuracy.

link|improve this answer
Unfortunately TimeSpan does not have a TotalYears property. – Chris Taylor Nov 8 '10 at 19:55
The reason for not specifying months and years is that those don't have a constant duration. – CodeInChaos Nov 8 '10 at 20:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.