public override bool Equals(object obj)
        {
            if (obj == this)
            {
                return(true);
            }
            WebBrowsableAttribute attribute = obj as WebBrowsableAttribute;

            return((attribute != null) && (attribute.Browsable == this.Browsable));
        }
Esempio n. 2
0
        /// <internalonly/>
        public override bool Equals(object obj)
        {
            if (obj == this)
            {
                return(true);
            }

            WebBrowsableAttribute other = obj as WebBrowsableAttribute;

            return((other != null) && (other.Browsable == Browsable));
        }