3

JSON.Stringifyを使用して、次の文字列を別のStringifyオブジェクト内に渡します。

[
    [
        "I-000-4310-000",
        "Convention Registration",
        "59.99"
    ],
    [
        "I-000-4311-000",
        "Convention Breakout",
        "39.99"
    ]
]

私のC#Webサービスでは、文字列を次のような文字列配列に分割する必要があります。

 string[, ,] GLCodes = new string[,,] 
 { 
    {
        { "I-000-4310-000", "Convention Registration", "59.99" }, 
        { "I-000-4311-000", "Convention Breakout", "9.99" }
    } 
 };

これを行う最も簡単な方法は何ですか?

4

1 に答える 1

7

Json.NETを使用すると、これでそのリストを逆シリアル化できます

string[][] strings = JsonConvert.DeserializeObject<string[][]>(jsonData);

お役に立てれば!

于 2013-02-26T15:25:15.437 に答える