My web methods are returning some values as list, but while calling these web methods getting it as array objects.How can I get it same as list.My web method is similar like this
[WebMethod]
public List<ReturnList> GetReturnList()
{
List<ReturnList> ReturnList=new List<ReturnList>();
//Calcuations
return ReturnList;
}