プロパティとして表され、Iは項目のリストを埋めるために、「アイテム」プロパティを解析する方法を見つけ出すことができないとき読むJSON配列が付きオブジェクト「の項目#XXX」私はこのJSONテキストを持っている
{
"response": {
"success": 1,
"current_time": 1445015502,
"items": {
"item1": {
"property1": 1,
"property2": "test",
"property3": 4.3
},
"item2": {
"property1": 5,
"property2": "test2",
"property3": 7.8
}
}
}
}
それらはまだ私のクラスです:
public class Item
{
public int property1 { get; set; }
public string property2 { get; set; }
public double property3 { get; set; }
}
public class Response
{
public int success { get; set; }
public string message { get; set; }
public int current_time { get; set; }
public List<Item> items { get; set; }
}
public class RootObject
{
public Response response { get; set; }
}
はまた、いや、それはエラーではありません。 JSONテキストには[
も]
もありません。 また、JSONの項目数は未定義です。
@EdCottrell - 解析する質問でJSONと間違って何も...痛みが、完全に有効ではありません。 –
そして、私は痛みの部分のための助け、それらの項目を解析する方法が必要ですか? – Arkarr
@AlexeiLevenkovあなたが返信する前に私のコメントを削除しました。私はこれをモバイルデバイスで読んでいて、誤読していました。あなたは正しい。 –