摘要:
using System;using System.Net;using System.Collections.Generic;using System.IO;using System.Xml;namespace CiCeng{public class CiCengjson{public object XmlToJson(){var xml = File.ReadAllText(@"D:\cnblogs.xml");//该xml为博客园随笔备份文件XmlDocument doc = new XmlDocument();doc.LoadXml(xml);//获取rss节点下的内 阅读全文