C#生成.xml语法
时间: 2024-11-03 07:21:09 浏览: 16
Microsoft-C#语法.pdf
在C#中,生成XML通常使用System.Xml命名空间下的类,特别是XmlDocument和XElement。以下是简单的例子来说明如何生成XML结构:
```csharp
using System;
using System.Xml.Linq;
class Program
{
static void Main()
{
// 创建一个新的XML文档对象
XDocument doc = new XDocument(
new XElement("Root",
new XElement("Child1", "Value1"),
new XElement("Child2", "Value2"),
new XElement("Child3",
new XElement("GrandChild", "GrandValue")
)
)
);
// 将XML写入到文件
doc.Save("output.xml");
Console.WriteLine("XML file generated successfully.");
}
}
```
在这个例子中,我们首先引入了System.Xml.Linq库,然后创建了一个名为"Root"的顶级元素,并添加了几个子元素"Child1"、"Child2"和嵌套的"GrandChild"。最后,`Save`方法将XML文档保存到了名为"output.xml"的文件中。
阅读全文