i want to convert List<object> to ArrayList but not getting any output...

Posted by girish on Stack Overflow See other posts from Stack Overflow or by girish
Published on 2010-05-12T09:16:42Z Indexed on 2010/05/12 9:24 UTC
Read the original article Hit count: 150

Filed under:

here is my code...

[WebMethod]    
    public ArrayList GetDataByModuleName(string ModuleName)
    {
        ArrayList m = (ArrayList)BAL_GeneralService.GetDataByModuleName(ModuleName);
        return m;
    }

but not getting any output...

© Stack Overflow or respective owner

Related posts about ASP.NET