public bool Equals()

in rocketmq-client-csharp/Topic.cs [33:46]


        public bool Equals(Topic other)
        {
            if (ReferenceEquals(null, other))
            {
                return false;
            }

            if (ReferenceEquals(this, other))
            {
                return true;
            }

            return ResourceNamespace == other.ResourceNamespace && Name == other.Name;
        }