I want to create an xml file. I know how to create an xml file using linq to xml concept.
But i want to save that file in the bin folder of my project. How to do that.
XDocument changesetDB = new XDocument(
new XElement("changes",
new XElement("change",
new XAttribute("path", changedFile),
new XAttribute("changesetID", changesetID),
new XAttribute("JIRAID", issueID))));
Now i want to save it in bin folder. Is it possible to do like that.
Thanks,
try out : XmlDocument.Save Method (String)