Kimono.KTimeZone.UtcOffsets C# (CSharp) Method

UtcOffsets() public method

Returns the complete list of UTC offsets used by the time zone. This may include historical ones which are no longer in use or have been superseded. A UTC offset is the number of seconds which you must add to UTC to get local time in this time zone. If due to the nature of the source data for the time zone, compiling a complete list would require significant processing, an empty list is returned instead.
public UtcOffsets ( ) : List
return List
        public List<int> UtcOffsets()
        {
            return (List<int>) interceptor.Invoke("utcOffsets", "utcOffsets() const", typeof(List<int>));
        }