Я звоню webmethod, чтобы вернуть массив строк в jquery. Обычный одномерный массив строк выглядит так
[WebMethod]
public static string[] GetNewRow() {
var listOfItems = new List<string>();
// populate the listOfItems here
listOfItems.Add("100");
// more here
return listOfItems.ToArray();
}
Можно ли вернуть многомерный массив?