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

            return((attribute != null) && (attribute.ListBindable == this.listBindable));
        }
Example #2
0
        /// <summary>
        ///    <para>[To be supplied.]</para>
        /// </summary>
        public override bool Equals(object obj)
        {
            if (obj == this)
            {
                return(true);
            }

            ListBindableAttribute other = obj as ListBindableAttribute;

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