i want to convert List<object> to ArrayList but not getting any output...
- by girish
here is my code...
[WebMethod]
public ArrayList GetDataByModuleName(string ModuleName)
{
ArrayList m = (ArrayList)BAL_GeneralService.GetDataByModuleName(ModuleName);
return m;
}
but not getting any output...