摘要: XmlDocument doc = new XmlDocument();XmlDeclaration dec = doc.CreateXmlDeclaration("1.0", "UTF-8", null);doc.AppendChild(dec);XmlElement root = doc.CreateElement("BookInfo");doc.AppendChild(root);XmlElement isbn = doc.CreateElement("ISBN");isbn.InnerText = &quo 阅读全文
posted @ 2010-11-06 00:11 小锋神 阅读(303) 评论(0) 推荐(0) 编辑