摘要: xml在我们的日常开发当中也是常用的一个基本知识点.那么你知道如何用后台代码创建一个xml文档吗?下面就是我自己学习当中用过的一个demo,希望对那些需要的人给予帮助!using System;using System.Collections.Generic;using System.Linq;using System.Text;//引入命名空间using System.Xml;namespace CreateXmlDemo{ class Program { static void Main(string[] args) { //第一步:首先创建一个空的XML文档 XmlDocument xd 阅读全文
posted @ 2011-04-26 18:18 大头男 阅读(840) 评论(0) 推荐(0) 编辑