Exemple #1
0
        public virtual int CompareTo(object obj)
        {
            TimeSpanValue other = obj as TimeSpanValue;

            if (other != null)
            {
                return(Value.CompareTo(other.Value));
            }
            else
            {
                return(Value.CompareTo(obj));
            }
        }
Exemple #2
0
 protected TimeSpanValue(TimeSpanValue original, Cloner cloner)
     : base(original, cloner)
 {
 }