オブジェクトのコレクションを含む単純なjson文字列があります http://sandapps.com/InAppAds/ads.json.txt
GetAsyncを呼び出してオブジェクトを取得すると、コレクションは4つではなく1つの要素を返し、空になります。
new JsonServiceClient ().GetAsync<List<CrossSell>> (url, Success, Failure);
私のクラスは単純です:
class CrossSell
{
public string ID { get; set; }
public string AppCategory { get; set; }
public string AppID { get; set; }
public string Name { get; set; }
public string ImageUrl { get; set; }
public string Copy { get; set; }
public string Device { get; set; }
public string Link { get; set; }
}