End of month calculations

10,971

Solution 1

To check if a date is the end of the month, you check if the next day is day one of some month. your algorithm should then be "If the day is not end of month, add 1 month. If it is the end of the month, add one day, add one month, subtract one day."

    bool IsEndOfMonth(DateTime date) {
        return date.AddDays(1).Day == 1;
    }
    DateTime AddMonthSpecial(DateTime date) {
        if (IsEndOfMonth(date))
            return date.AddDays(1).AddMonths(1).AddDays(-1);
        else
            return date.AddMonths(1);
    }

Solution 2

DateTime exampleDate = DateTime.Parse("12/31/2009");
bool isLastDayOfMonth = (exampleDate.AddDays(1).Month != exampleDate.Month);

if (isLastDayOfMonth)
    Console.WriteLine(exampleDate.AddDays(1).AddMonths(1).AddDays(-1));
else
    Console.WriteLine(new DateTime(exampleDate.Year, exampleDate.Month, 1).AddMonths(2).AddDays(-1));

EDIT: I read your question again. You will need to put a check to see if its last day of the month.

Sorry, I wish I had read the question clearly of what is needed.
Hope this is good enough to give you an idea of what is needed.

Solution 3

Can you get there by starting at the first day of the previous month and going back one day?

Share:
10,971
vdh_ant
Author by

vdh_ant

Updated on June 04, 2022

Comments

  • vdh_ant
    vdh_ant almost 2 years

    Just wondering if any know of an elegant solution for the following.

    If I have 30 June 2009 and I add a month I want it to go to 31 July 2009, not the 30 July 2009.

    This logic is based on the fact that the 30 June 2009 was the end of the month of June and when I add a month I want to go to the end of the next month.

    But if I have 29 June 2009 and I add a month it should go to 29 July 2009.

    Note I need to be able to add any number of months and I need to take into account leap years.

    Also I know the logic here is questionable but it is a business requirement that works with end of month contracts going to the end of the month for a month in the future.

    I have thought of several solution but none that are very elegant. Hence I was thinking someone might have a better way.

    Cheers Anthony

  • Boti
    Boti almost 15 years
    sorry, I made a mistake in the explanation "add one day, add one month, subtract one month" should be "add day, add month, subtract day." I fixed that last sentence.
  • Boti
    Boti almost 15 years
    your example still works because you add 2 months to 1 Jan 2010, getting 1 mar 2010, then subtracting the 1 day to get "1 day before the next month", which is equivalent to "last day of month"
  • sesame
    sesame almost 15 years
    public int Day { get; } ms-help://MS.VSCC.v90/MS.MSDNQTR.v90.en/fxref_mscorlib/html/‌​899d9772-e792-052a-2‌​c0b-8a28aea0d5b9.htm