in tool/TeamCity.Docker/Generic/Graph.cs [237:256]
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 = (Link) obj;
return From.Equals(other.From) && _linkComparer.Equals(Value, other.Value) && To.Equals(other.To);
}