带标记的XML到json转换器

时间:2015-11-06 09:21:07

标签: c# json xml

我想将xml文档转换为json。在xml中,它们定义了每个标记。我也想这样做

XML文档:

                   gameHistoryMain = new XDocument(
                          new XElement("History",
                             new XElement("userid", playerID),
                             new XElement("gamedetails")
                             ));

这里我很困惑什么json属性适合?我试过了

jsonObject JsonArray JsonProperty

哪一个是正确的?

1 个答案:

答案 0 :(得分:1)

  

Json.Net包管理器

导入NuGet

在您的类文件中使用Newtonsoft.Json引用

using Newtonsoft.Json;

以下代码段可帮助您将XDocument转换为JSON

string json = JsonConvert.SerializeXNode(gameHistoryMain,Formatting.Indented,true);

- SJ