StoryTeller.Model.FixtureDto.Equals C# (CSharp) Method

Equals() public method

public Equals ( FixtureDto other ) : bool
other FixtureDto
return bool
        public bool Equals(FixtureDto other)
        {
            if (ReferenceEquals(null, other)) return false;
            if (ReferenceEquals(this, other)) return true;
            return Equals(other.Name, Name) && Equals(other.Namespace, Namespace) && Equals(other.Fullname, Fullname);
        }

Same methods

FixtureDto::Equals ( object obj ) : bool