Kimono.KDateTime.ToZone C# (CSharp) Method

ToZone() public method

Returns the time converted to a specified time zone. If the instance is a local clock time, it is first set to the local time zone, and then converted to zone. If the instance is a date-only value, a date-only value in zone is returned, with the date unchanged. name="zone" time zone to convert to
public ToZone ( KTimeZone zone ) : KDateTime
zone KTimeZone
return KDateTime
        public KDateTime ToZone(KTimeZone zone)
        {
            return (KDateTime) interceptor.Invoke("toZone#", "toZone(const KTimeZone&) const", typeof(KDateTime), typeof(KTimeZone), zone);
        }