您好,我正在尝试向这个复杂对象添加值。我正在尝试使用 JSON.Net 将此对象转换为 JSON。
Dictionary<string, List<Dictionary<string, int>>> MyList
= new Dictionary<string, List<Dictionary<string, int>>>();
最终结果应该是这样的:{
"Documents": [
{
"Title": ,
"DatePublished": ,
"DocumentURL": ,
"ThumbnailURL": ,
"Abstract": ,
"Sector": "",
"Country": [
""
],
"Document Type": ""
}
我已经尝试过了,但没有奏效:
MyList["Dictionary"][0].Add("test", 4);