I am calling webmethod in order to return string array in jquery. Regular one dimension string array looks like this
[WebMethod]
public static string[] GetNewRow() {
var listOfItems = new List<string>();
// populate the listOfItems here
listOfItems.Add("100");
// more here
return listOfItems.ToArray();
}
Is it possible to return a multidimensional array?