public override bool Equals()

in src/cs/PhoneticMatchingTests/Matchers/BaseContactMatcherTester.cs [65:84]


            public override bool Equals(object obj)
            {
                if (this == obj)
                {
                    return true;
                }

                if (obj != null)
                {
                    if (obj.GetType() == this.GetType())
                    {
                        var other = (TestContact)obj;
                        return other.FirstName == this.FirstName &&
                            other.LastName == this.LastName &&
                            other.Id == this.Id;
                    }
                }

                return false;
            }