How can I fix the error : “Unreachable Code Detected”

后端 未结 4 1650
太阳男子
太阳男子 2020-12-04 00:22
public partial class KalenderLeeftijd : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{

}
protected void calBirthDate_SelectionChanged(o         


        
4条回答
  •  离开以前
    2020-12-04 01:01

    The statement:

    return count;
    

    Exits the function. Therefore,

    answer = GetAnswer(); 
    Response.Write(lblAntwoord);  
    

    cannot be reached.

提交回复
热议问题