예제 #1
0
        public int CompareTo(DonationTransaction other)
        {
            var res = 0;

            if (this.CompareNull(other, ref res))
            {
                return(res);
            }

            return(TimeStamp.Compare(Time, other.Time));
        }