Reputation: 21
I am using the lines below in the web service to see the XML which we send to another party:
XDocument doc;
doc.Save("san.xml");
In which directory can I find the san.xml
file?
Upvotes: 1
Views: 90
Reputation: 631
When saving a file in c#, if no directory is specified, the application writes to the running directory, which is normally where the application is.
Upvotes: 2