Serialize dictionary as array (of key value pairs)(将字典序列化为数组(键值对))
问题描述
Json.Net 通常将 Dictionary<k,v> 序列化为集合;
Json.Net typically serializes a Dictionary<k,v> into a collection;
"MyDict": {
  "Apples": {
    "Taste": 1341181398,
    "Title": "Granny Smith",
  },
  "Oranges": {
    "Taste": 9999999999,
    "Title": "Coxes Pippin",
  },
 }
这很棒.从 SO 上环顾四周,这似乎是大多数人想要的.但是,在这种特殊情况下,我想在 Dictionary<k,v> 和数组格式之间进行序列化;
Which is great. And from looking around on SO it seems to be what most people want. However, in this particular case, I want to serialize between my Dictionary<k,v> and the Array format instead;
"MyDict": [
    "k": "Apples",
    "v": {
        "Taste": 1341181398,
        "Title": "Granny Smith",
    }
  },
    "k:": "Oranges",
    "v:": {
        "Taste": 9999999999,
        "Title": "Coxes Pippin",
    }
  },
]
有没有一种简单的方法可以用我现有的字段类型来做到这一点?例如,有没有我可以注释的属性?
Is there an easy way to do this with my existing field type? Is there an attribute I can annotate for instance?
推荐答案
啊,事实证明这和我希望的一样简单.我的 Dictionary<k,v> 已经是子类,我发现我可以用 [JsonArrayAttribute] 对其进行注释.这正是我需要的格式;
Ah, it turns out this is as straightforward as I'd hoped. My Dictionary<k,v> is subclassed already and I found that I can annotate it with [JsonArrayAttribute]. That gives me exactly the format I need;
"MyDict": [
  {
    "Key": "Apples",
    "Value": {
        "Taste": 1341181398,
        "Title": "Granny Smith",
    }
  },
  {
    "Key:": "Oranges",
    "Value:": {
        "Taste": 9999999999,
        "Title": "Coxes Pippin",
    }
  },
]
                        这篇关于将字典序列化为数组(键值对)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:将字典序列化为数组(键值对)
				
        
 
            
        - 是否可以在 .Net 3.5 中进行通用控件? 2022-01-01
 - Azure Active Directory 与 MVC,客户端和资源标识同一 2022-01-01
 - Windows 喜欢在 LINUX 中使用 MONO 进行服务开发? 2022-01-01
 - CanBeNull和ReSharper-将其用于异步任务? 2022-01-01
 - 带问号的 nvarchar 列结果 2022-01-01
 - 使用 rss + c# 2022-01-01
 - C# 通过连接字符串检索正确的 DbConnection 对象 2022-01-01
 - 为什么 C# 中的堆栈大小正好是 1 MB? 2022-01-01
 - 在 C# 中异步处理项目队列 2022-01-01
 - 在 LINQ to SQL 中使用 contains() 2022-01-01
 
						
						
						
						
						