Calculate the number of months between two dates with C#

Say you’d like to calculate the difference between two dates in terms of number of months.

The following simple function will do just that: return the absolute number of months between two dates:

public static int GetMonthDifference(DateTime startDate, DateTime endDate)
{
	int monthsApart = 12 * (startDate.Year - endDate.Year) + startDate.Month - endDate.Month;
	return Math.Abs(monthsApart);
}

Usage:

DateTime now = DateTime.UtcNow;
DateTime past = now.AddMonths(-13);
int monthDiff = GetMonthDifference(now, past);

monthDiff will be 13 as expected, i.e. not -13.

View all various C# language feature related posts here.

Unknown's avatarAbout Andras Nemes
I'm a .NET/Java developer living and working in Stockholm, Sweden.

2 Responses to Calculate the number of months between two dates with C#

  1. Pingback: Calculate the number of months between two dates with C# | Dinesh Ram Kali.

  2. Brian's avatar Brian says:

    Excellent. Thank you for this. I was using someone’s code that calculated it incorrectly!

Leave a comment

Elliot Balynn's Blog

A directory of wonderful thoughts

Software Engineering

Web development

Disparate Opinions

Various tidbits

chsakell's Blog

WEB APPLICATION DEVELOPMENT TUTORIALS WITH OPEN-SOURCE PROJECTS

Once Upon a Camayoc

ARCHIVED: Bite-size insight on Cyber Security for the not too technical.