Kimono.KDateTime.AddYears C# (CSharp) Method

AddYears() public method

Returns a date/time years years later than the stored date/time. The result is expressed using the same time specification as the original instance. Note that if the instance is a local clock time (type ClockTime), any daylight savings changes or time zone changes during the period may render the result inaccurate.
public AddYears ( int years ) : KDateTime
years int
return KDateTime
        public KDateTime AddYears(int years)
        {
            return (KDateTime) interceptor.Invoke("addYears$", "addYears(int) const", typeof(KDateTime), typeof(int), years);
        }