public override bool Equals()

in tool/TeamCity.Docker/Generic/Graph.cs [185:204]


            public override bool Equals(object obj)
            {
                if (ReferenceEquals(null, obj))
                {
                    return false;
                }

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

                if (obj.GetType() != GetType())
                {
                    return false;
                }

                var other = (Node) obj;
                return _nodeComparer.Equals(Value, other.Value);
            }