我一直在創造不同的控件數組如下,e.g:創建可變大小的數組
private TextBox[] Array_TextBoxes;
private CheckBox[] Array_CheckBoxes;
private RadioButtonList[] Array_radioButton;
Array_TextBoxes= new TextBox[4];
Array_CheckBoxes= new CheckBox[5];
Array_radioButton= new RadioButtonList[10];
是否有創建它們,這樣我就不需要指定大小/長度的任何方式?即有可能使這些控件數組的大小可變嗎?
謝謝!
'System.Collections.Generic.List' - http://msdn.microsoft.com/en-us/library/system.collections.generic.aspx –