摘要:
//创建一个空的xml文档 XmlDocument xmldoc = new XmlDocument(); //在xml文档最头部加入xml的声明段落 //<?xml version="1.0"?> XmlNode xmlnode = xmldoc.CreateNode(XmlNodeType.XmlDeclaration, "", ""); xmldoc.AppendChild(xmlnode); //增加注释 Xm... 阅读全文
posted @ 2013-01-14 23:30
wouldguan
阅读(377)
评论(0)
推荐(0)
浙公网安备 33010602011771号