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" }
}
};
これを行う最も簡単な方法は何ですか?