我知道这可能是一个简单的问题,但是我在创建一个只会创建其根目录的 xml 文件时遇到了麻烦
我有以下代码,但它不起作用
XDocument products = new XDocument(
new XDeclaration("1.0", "utf-8", ""),
new XElement("Users",
)
);
products.Save("hello.xml");
您需要在磁盘中保存一些位置:
XDocument products = new XDocument(
new XDeclaration("1.0", "utf-8", ""),
new XElement("Users"));
products.Save("c:\\hello.xml");
编辑:
保存在当前目录:
var path = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "hello.xml");
products.Save(path);
“用户”后面有一个额外的逗号