摘要: 上篇文章中提到XML转换问题,有些朋友颇有疑问,后期答复详解,这次带来使用XmlDocument读写节点属性using System;using System.Xml;namespace NET.MST.Tenth.UseXmlDocument{ partial class UseXmlDocument { static void Main(string[] args) { String path = "..\\..\\Test.xml"; XmlDocument xml = new XmlDocument(); xml.Load(path); Console.WriteL 阅读全文
posted @ 2011-06-01 09:56 brainmao 阅读(2468) 评论(0) 推荐(0) 编辑