6
Newtonsoft.Json.Linq.JArray를 특정 객체 유형의 목록으로 변환
유형의 다음 변수가 {Newtonsoft.Json.Linq.JArray}있습니다. properties["Value"] {[ { "Name": "Username", "Selected": true }, { "Name": "Password", "Selected": true } ]} 내가 달성하고자하는 것은 이것을 다음 유형의 List<SelectableEnumItem>위치 로 변환 하는 것 SelectableEnumItem입니다. public class SelectableEnumItem { public string Name { get; set; } public bool Selected { get; set; } } …