estoy usando:¿Cuál es la mejor manera de ver si RadioButtonList tiene un valor seleccionado?
if (RadioButtonList_VolunteerType.SelectedItem != null)
o cómo sobre:
if (RadioButtonList_VolunteerType.Index >= 0)
o acerca de cómo (por la respuesta de Andrew Hare):
if (RadioButtonList_VolunteerType.Index > -1)
Para aquellos que puedan leer esta pregunta, el siguiente no es un método válido. Como señaló Keltex, el valor seleccionado podría ser una cadena vacía.
if (string.IsNullOrEmpty(RadioButtonList_VolunteerType.SelectedValue))
Por cierto, debería ser "return list.SelectedItem! = Null". –
buen punto, voy a editar el error. –