本文介绍了转换Newtonsoft.Json.Linq.JArray到特定对象类型的列表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我型以下变量 {Newtonsoft.Json.Linq.JArray}
。
properties["Value"] {[
{
"Name": "Username",
"Selected": true
},
{
"Name": "Password",
"Selected": true
}
]}
我想做到的是将其转换为列表< SelectableEnumItem>
,其中 SelectableEnumItem
是以下类型:
public class SelectableEnumItem
{
public string Name { get; set; }
public bool Selected { get; set; }
}
我比较仪编程,我不知道这是否是可能的。与工作示例任何帮助将大大AP preciated。
I am rather ner to programming and I am not sure whether this is possible. Any help with working example will be greatly appreciated.
推荐答案
就叫 array.ToObject<名单< SelectableEnumItem>>()
方法。它将返回你所需要的。
Just call array.ToObject<List<SelectableEnumItem>>()
method. It will return what you need.
文档:
这篇关于转换Newtonsoft.Json.Linq.JArray到特定对象类型的列表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!