public bool Equals()

in rocketmq-client-csharp/TopicRouteData.cs [36:41]


        public bool Equals(TopicRouteData other)
        {
            if (ReferenceEquals(null, other)) return false;
            if (ReferenceEquals(this, other)) return true;
            return Equals(_messageQueues, other._messageQueues);
        }