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

            return((attribute != null) && (attribute.RecommendedAsConfigurable == this.recommendedAsConfigurable));
        }
        /// <internalonly/>
        /// <summary>
        /// </summary>
        public override bool Equals(object obj)
        {
            if (obj == this)
            {
                return(true);
            }

            RecommendedAsConfigurableAttribute other = obj as RecommendedAsConfigurableAttribute;

            return(other != null && other.RecommendedAsConfigurable == _recommendedAsConfigurable);
        }