HandCoded.Finance.TimeZone.CompareTo C# (CSharp) Method

CompareTo() public method

Returns the result of comparing this instance to another TimeZone.
public CompareTo ( TimeZone other ) : int
other TimeZone The TimeZone instance to compare with.
return int
        public int CompareTo(TimeZone other)
        {
            return (offset - other.offset);
        }

Same methods

TimeZone::CompareTo ( object other ) : int