Beispiel #1
0
        public int CompareTo(AtomicName <T> Name)
        {
            if (Name == null)
            {
                return(1);
            }

            return(Value.CompareTo(Name.Value));
        }
Beispiel #2
0
        public bool Equals(AtomicName <T> Name)
        {
            if (Name == null)
            {
                return(false);
            }

            return(Value.Equals(Name.Value));
        }