(vb.net) Lable, TextBox를 연속된 배열로 사용(vb에서 같은 이름 컨트롤들로 인덱스 다르게 할때와 동일)
'RadioButton1.Checked = False 'RadioButton2.Checked = False 'RadioButton3.Checked = False 'RadioButton4.Checked = False 'RadioButton5.Checked = False 'RadioButton6.Checked = False 위 코드는 아래 코드와 동일하다 Dim rButton() As RadioButton = {RadioButton1, RadioButton2, RadioButton3, RadioButton4, RadioButton5, RadioButton6} For i As Integer = 0 To 1 Step +1 rButton(i).Checked = False Next