0
私はjsonオブジェクトを別のアプリケーションから返すようにしました。各オブジェクトの構造は異なりますが、それぞれのオブジェクトのタイトルから同じデータを抽出したいのですNewtownSoft)を使用して:JsonオブジェクトをCで逆シリアル化する#
{
"myData": [
{
"one": {
"in": 0,
"out": 17,
"total": 17
},
"two": {
"total": 17
},
"three": {
"total": 0
},
"four": {
"total": 8
},
"five": {
"total": 0
},
"six": {
"total": 0
},
"seven": {
"total": 0
}
} ]}
私は結果が
この画像のようになり、唯一のクラス
を使用してこのコードをデシリアライズしたいですpublic class Example{
public string number {get;set;}
public int total {get; set;}
}
可能な重複(https://stackoverflow.com/questions/7895105/deserialize-json-with-c-sharp) –