- .NET Framework : 4.7.2
- IDE : Visual Studio Community 2019
- OS : Windows 10 x64
- typesetting : Markdown
- blog : xinshaopu.blog.csdn.net
code
using System;
using System.Xml.Linq;
namespace ConsoleApp
{
class Program
{
static void Main(string[] args)
{
XDocument xmlFile = new XDocument();
// 设置根元素
XElement root = new XElement("cultures");
// 子元素
XElement taoists = new XElement("taoists");
taoists.SetAttributeValue("count", "100");
taoists.SetAttributeValue("comment", "good");
XElement book1 = new XElement