我想知道在对象内连接字符串的干净方法是什么?
{"name":"Hello"} children: [{
输出
{
"name":"hello",
children: [{
所需的输出
{{1}}
答案 0 :(得分:1)
children
必须是Example
类的数组属性,才能使JsonConvert
生成所需的输出。
public class Example
{
public string name { get; set; }
public string[] children { get;set; }
}