JsonConvert.SerializeXNode("<Root><Student key="Student1" value="4" /> <Student key="Student2" value="0" /></Root>")
它的回报
{"Root":{Student:[{key:Student1,value=4}},Student:{key:Student2,value=0}]}
但是我需要
JsonConvert.SerializeXNode("<Root><Student key="Student1" value="4" /></Root>")
从
{"Root":[{Student:{key:Student1,value=4}}]}
但它的回报
{"Root":{Student:{key:Student1,value=4}}}
任何人都可以为此提供帮助