StoryTeller.Counts.Equals C# (CSharp) Method

Equals() public method

public Equals ( Counts obj ) : bool
obj Counts
return bool
        public bool Equals(Counts obj)
        {
            if (ReferenceEquals(null, obj)) return false;
            if (ReferenceEquals(this, obj)) return true;
            return obj.Rights == Rights && obj.Wrongs == Wrongs && obj.Exceptions == Exceptions &&
                   obj.SyntaxErrors == SyntaxErrors;
        }

Same methods

Counts::Equals ( object obj ) : bool