我想创建一个 xml 文件。我知道如何使用 linq to xml 概念创建一个 xml 文件。但我想将该文件保存在我项目的 bin 文件夹中。怎么做。
XDocument changesetDB = new XDocument(
new XElement("changes",
new XElement("change",
new XAttribute("path", changedFile),
new XAttribute("changesetID", changesetID),
new XAttribute("JIRAID", issueID))));
现在我想将它保存在 bin 文件夹中。有没有可能这样做。谢谢,