本文共 800 字,大约阅读时间需要 2 分钟。
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Xml.Linq;namespace ConsoleApplication1{ class Program { static void Main(string[] args) { XDocument doc = new XDocument( new XProcessingInstruction("xml-stylesheet", "title='黄聪'"), new XComment("注释1"), new XElement("Root", new XElement("Persons", new XElement("Person", new XAttribute("Id", 1), new XElement("Name", "Huang Cong"), new XElement("Sex", "男"))), new XComment("注释2"))); doc.Save("test.xml"); } }}
转载地址:http://otje.baihongyu.com/