I want to insert a group box in the form and put in 3 radio buttons in it.
Are there any advantages in attaching the 3 radio buttons to the groupbox.? Cab we even do tha
Also you can do it on one line:
groupBox1.Controls.AddRange(new Control[] { radioButton1, radioButton2, radioButton3 });