NRConfigManager.Rendering.Extension.DenormalisedExactMatchRecord.Equals C# (CSharp) Method

Equals() public method

public Equals ( object obj ) : bool
obj object
return bool
            public override bool Equals(object obj)
            {
                var other = obj as DenormalisedExactMatchRecord;
                if (other == null)
                {
                    return false;
                }
                else
                {
                    return
                        this.Metric == other.Metric
                        && this.MetricName == other.MetricName
                        && this.Name == other.Name
                        && this.TransactionNamingPriority == other.TransactionNamingPriority
                        && this.AssemblyName == other.AssemblyName
                        && this.ClassName == other.ClassName;
                }
            }
Extension.DenormalisedExactMatchRecord