StoryTeller.Domain.Tags.Equals C# (CSharp) Method

Equals() public method

public Equals ( Tags obj ) : bool
obj Tags
return bool
        public bool Equals(Tags obj)
        {
            if (ReferenceEquals(null, obj)) return false;
            if (ReferenceEquals(this, obj)) return true;
            return Equals(obj.Text, Text);
        }

Same methods

Tags::Equals ( object obj ) : bool