在C#后台,这种JSON数据要怎么获取里面的所有参数内容呢?
{
"result":"success",
"root":{
"track":[
{
"orderno":"A210600870",
"billcode":"400039547",
"detail":[
{
"memo":"快件已发往深圳",
"time":"2022-06-09 13:14:00",
"scantype":"发往"
},
{
"memo":"联运通 已收运(10件)",
"time":"2022-06-09 13:12:35",
"scantype":"开单"
},
{
"memo":"快件到达深圳中转中心",
"time":"2022-06-09 13:14:00",
"scantype":"到达"
},
{
"memo":"快件开始派送",
"time":"2022-06-09 13:15:00",
"scantype":"派送"
},
{
"memo":"蔡杰杰已签收已签收",
"time":"2022-06-09 13:15:00",
"scantype":"签收"
}
]
}
]
},
"message":""
}
想通过实体类来获取里面的内容。谢谢!!!