私は使っている:
if (RadioButtonList_VolunteerType.SelectedItem != null)
またはどうですか:
if (RadioButtonList_VolunteerType.Index >= 0)
またはどうですか(Andrew Hareの回答による):
if (RadioButtonList_VolunteerType.Index > -1)
この質問を読む人にとって、次の方法は有効ではありません。Keltex が指摘したように、選択された値は空の文字列である可能性があります。
if (string.IsNullOrEmpty(RadioButtonList_VolunteerType.SelectedValue))