Get array item from webservice object to android
问题 Im trying to get details like. District, name, Id ect... from MsSql DB through .Net web Service from a array object. My web Service [WebMethod] public DisAndPanDetails[] GetDistrictNameDetails() { DisAndPanDetails[] objDetails = new DisAndPanDetails[1]; SQLHelper objHelper = new SQLHelper(); DataTable dtblDetails = new DataTable(); string sQuery = string.Empty; try { sQuery = "SELECT DISTINCT District FROM OnlineTaxMerchantIdDetails ORDER BY District"; objHelper.CreateConnection("Connect");