Beispiel #1
0
        public override bool Equals(object obj)
        {
            if (obj == this)
            {
                return(true);
            }
            ExpressionEditorAttribute attribute = obj as ExpressionEditorAttribute;

            return((attribute != null) && (attribute.EditorTypeName == this.EditorTypeName));
        }
        public override bool Equals(object obj)
        {
            if (obj == this)
            {
                return(true);
            }

            ExpressionEditorAttribute other = obj as ExpressionEditorAttribute;

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