XmlUtility.cs 537 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using Newtonsoft.Json;
  6. using System.Xml.Linq;
  7. namespace WeiXin.Library.Utility
  8. {
  9. class XmlUtility
  10. {
  11. /// <summary>
  12. ///
  13. /// </summary>
  14. /// <param name="json"></param>
  15. /// <param name="rootName"></param>
  16. /// <returns></returns>
  17. public static XDocument ParseJson(string json, string rootName)
  18. {
  19. return JsonConvert.DeserializeXNode(json, rootName);
  20. }
  21. }
  22. }