首页 相关文章 对于任意的XML的遍历

对于任意的XML的遍历

  class test
   {
   private static string root;

   public static void showXML(string path)
   {
   XmlDocument xd = new XmlDocument();
   xd.Load(path);
  
   XmlNodeList xnl = xd.DocumentElement.ChildNodes;
   root = xd.FirstChild.NextSibling.Name;//记录根节点

   Console.Write(root+"");

   foreach (XmlNode xn in xnl)
   {
   ...[ 查看全文 ]

2016-02-19 标签:

对于任意的XML的遍历的相关文章

手机页面
收藏网站 回到头部