public override bool Equals()

in TeamCity.CSharpInteractive/CodeCommand.cs [16:23]


    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 = (CodeCommand)obj;
        return Internal == other.Internal;
    }