for (int i = 0; i < 2; i++)
        {
            radio[i] = new RadioButton();
            radio[i].Parent = grpbox;
            radio[i].Text = new string[] { "Prepend", "Append" }[i];
            radio[i].Location = new Point(8, 9 + 12 * i);
            radio[i].Checked = (i == 0);
        }

 

특히 Text 프로퍼티에 대입하는 부분이 왜케 멋져보이지..