HandCoded.Finance.Date.PlusYears C# (CSharp) Méthode

PlusYears() public méthode

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