我想将xml文档转换为json。在xml中,它们定义了每个标记。我也想这样做
XML文档:
gameHistoryMain = new XDocument(
new XElement("History",
new XElement("userid", playerID),
new XElement("gamedetails")
));
这里我很困惑什么json属性适合?我试过了
jsonObject JsonArray JsonProperty
哪一个是正确的?
答案 0 :(得分:1)
从
导入Json.Net
包管理器NuGet
包
在您的类文件中使用Newtonsoft.Json
引用
using Newtonsoft.Json;
以下代码段可帮助您将XDocument转换为JSON
string json = JsonConvert.SerializeXNode(gameHistoryMain,Formatting.Indented,true);
- SJ