Beispiel #1
0
        public int CompareTo(Item other)
        {
            if (other == null)
            {
                return(1);
            }

            return(PubDate.CompareTo(other.PubDate));
        }