且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

将JSON嵌套数组解析为C#对象

更新时间:2022-11-22 15:29:02

您应该能够使用解串器的非动态变体:

You should be able to use the non dynamic variant of the deserializer:

var result =JsonConvert.DeserializeObject<Prediccion>(requestBody);