示例#1
0
        public int CompareTo(IRtmLocation other)
        {
            if (other == null)
            {
                return(1);
            }

            return(string.Compare(Id, other.Id, StringComparison.Ordinal));
        }
示例#2
0
 public bool Equals(IRtmLocation other)
 {
     return(other != null && string.Equals(Id, other.Id));
 }