对象中的concat字符串?

时间:2019-04-18 08:53:14

标签: c# json json.net

我想知道在对象内连接字符串的干净方法是什么?

{"name":"Hello"} children: [{

输出

{
 "name":"hello",
  children: [{

所需的输出

{{1}}

1 个答案:

答案 0 :(得分:1)

children必须是Example类的数组属性,才能使JsonConvert生成所需的输出。

public class Example
{
  public string name { get; set; }
  public string[] children { get;set; }
}