StoryTeller.Testing.UserInterface.Exploring.TreeNodeToken.Equals C# (CSharp) Method

Equals() public method

public Equals ( TreeNodeToken obj ) : bool
obj TreeNodeToken
return bool
        public bool Equals(TreeNodeToken obj)
        {
            if (ReferenceEquals(null, obj)) return false;
            if (ReferenceEquals(this, obj)) return true;
            return Equals(obj.Type, Type) && Equals(obj.Path, Path);
        }

Same methods

TreeNodeToken::Equals ( object obj ) : bool