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.

Advertisement

About 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 says:

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

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

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

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

%d bloggers like this: