I have managed to put a checkbox array on the Form1.Designer.cs such that:
this.caja = new System.Windows.Forms.CheckBox[] {checkBox1 , checkBox2, checkBox3, checkBox4, checkBox5, checkBox6,
checkBox7 ,checkBox8 ,checkBox9 ,checkBox10 ,checkBox11 ,checkBox12 ,checkBox13 ,checkBox14 ,checkBox15 ,checkBox16};
I wanted to know if it can be put with ArrayList:
I put it like that and I get an error:
this.caja = new System.Windows.Forms.CheckBox ArrayList caja = new ArrayList() { };