StoryTeller.Workspace.FixtureFilter.Equals C# (CSharp) Méthode

Equals() public méthode

public Equals ( FixtureFilter other ) : bool
other FixtureFilter
Résultat bool
        public bool Equals(FixtureFilter other)
        {
            if (ReferenceEquals(null, other)) return false;
            if (ReferenceEquals(this, other)) return true;
            return Equals(other.Type, Type) && Equals(other.Name, Name);
        }

Same methods

FixtureFilter::Equals ( object obj ) : bool