有哪位高手能给我解释下一个函数 然后在它前面申明下面这种形式的语句是什么意思呢?[TypeConverter(typeof(StringArrayConverter))]函数前的那个中括号申明是什么意思啊 ? 高手请解释下 谢谢了例:
        [Bindable(true, BindingDirection.TwoWay)]
        public string Text
        {
            get {
                EnsureChildControls();
                return _textbox.Text;
            }
            set
            {
                EnsureChildControls();
                 _textbox.Text = value;
            }
        }