2013年8月6日

c# 生成 xml 文件

摘要: 方法一:using System;using System.Xml;using System.IO;using System.Text;public class ReadWriteXml { private static void Main() { // Create the file and writer. FileStream fs = new FileStream("products.xml", FileMode.Create); XmlTextWriter w = new XmlTextWriter(fs, Encoding.UT... 阅读全文

posted @ 2013-08-06 18:59 星空夜夏梦 阅读(263) 评论(0) 推荐(0) 编辑

导航