Snippets
10

public static DateTime GetFirstDayOfNextMonth(DateTime startDate)

{

if (startDate.Month == 12) // its end of year , we need to add another year to new date:

{

startDate = new DateTime((startDate.Year + 1), 1, 1);

}

else

{

startDate = new DateTime(startDate.Year, (startDate.Month + 1), 1);

}

return startDate;

}

Post Rating

Comments

There are currently no comments, be the first to post one!

Post Comment

Only registered users may post comments.

  120 OLD FREEMANS WAY, BREWSTER, MA 02631
  P. O. BOX 2342, BREWSTER, MA 02631
  (774) 323-3176
  CONTACT US