Kimono.KDateTime.AddMonths C# (CSharp) Метод

AddMonths() публичный Метод

Returns a date/time months months 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 AddMonths ( int months ) : KDateTime
months int
Результат KDateTime
        public KDateTime AddMonths(int months)
        {
            return (KDateTime) interceptor.Invoke("addMonths$", "addMonths(int) const", typeof(KDateTime), typeof(int), months);
        }