存在於我的老項目時,我保存的XDocument,保存功能有一個像7個重載包括使用網絡的核心是「字符串文件名」在我的新項目的XDocument保存字符串參數不net.core
現在沒有超載接受文檔應該保存的字符串。
我有這樣的:
XDocument file = new XDocument();
XElement email = new XElement("Email");
XElement recipientsXml = new XElement("Recipients");
foreach (var r in recipients)
{
var rec = new XElement("Recipient",
new XAttribute("To", r));
recipientsXml.Add(rec);
}
email.Add(recipientsXml);
file.Add(email);
file.Save(@"C:\1\email.xml");
我如何保存的XDocument在我的硬盤?
謝謝。
不要忘記使用'使用(FileStream fileStream = .. 。){...}' –