System.Xml.Xsl.Qil.QilName.Equals C# (CSharp) Method

Equals() public method

Override Equals() so that the QilName can be used as a key in the hashtable.
Does not compare their prefixes (if any).
public Equals ( object other ) : bool
other object
return bool
        public override bool Equals(object other) {
            QilName name = other as QilName;
            if (name == null)
                return false;

            return this.local == name.local && this.uri == name.uri;
        }