public partial class KalenderLeeftijd : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void calBirthDate_SelectionChanged(o
Unreachable code is a compiler warning, not error. You have three options:
It is unreachable because the flow of the method exits at the return
statement, and thus will never execute the code below. The compiler can determine this and so can report it. Like I said, these are actually compiler warnings and won't stop a successful build unless you have configured the project to treat warnings as errors.