2

我需要将对象的 String 属性序列化为嵌套 JSON 而没有任何转义等。所以给定 json:

{
  "regularProperty" : "Test here",
  "nestedJSON" : {
    "propertyArray" : [1,2,3],
    "propertyText" : "new Text",
    "anotherObject" : { ... }
  }
}

并且nestedJSON属性必须包含文本

{
  "propertyArray" : [1,2,3],
  "propertyText" : "new Text",
  "anotherObject" : { ... }
}

序列化/反序列化怎么可能?任何特定的注释或数据类型?

4

1 回答 1

4

也许在nestedJSON字段上添加注释JsonRawValue?我以前从未使用过它,但它似乎对你的情况很有希望。

于 2013-02-18T09:57:11.847 回答