forum

Home / DeveloperSection / Forums / Unreachable Code Detected Return Value

Unreachable Code Detected Return Value

Anonymous User194115-May-2013
Hi Guys

How to return value with this issue? Help me please.

protected string SendState(Object ID_DIP,Object ID_SEQ,Object MODUL)
{
    try
    {
        ViewState["ssDIP"] = ID_DIP.ToString();
        ViewState["ssSEQ"] = ID_SEQ.ToString();
        ViewState["ssMOD"] = MODUL.ToString();
        return ID_DIP.AsString();
        return ID_SEQ.AsString();
        return MODUL.ToString();
    }
    catch (Exception)
    {
        return "";
    }
}

Thanks 

Updated on 15-May-2013
I am a content writter !

Can you answer this question?


Answer

1 Answers

Liked By