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

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

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