HandCoded.Finance.Date.PlusMonths C# (CSharp) Method

PlusMonths() public method

Creates a new Date based on the current instance and a given number of months adjustment.
public PlusMonths ( int months ) : Date
months int The number of months to adjust by.
return Date
        public Date PlusMonths(int months)
        {
            return (new Date (dateValue.PlusMonths (months), timeZone));
        }