I\'m using the following query to get the next month.
int theMonth = ((System.DateTime)periodStartDate).Month+1;
But if the periodstartDate
If you call AddMonths(1) then .NET will automatically roll the date into the next year.
AddMonths(1)
periodStartDate.AddMonths(1).Month;