I'm using Visual c# 2010 express edition, and I'm working around files a lot, there's writexml and there's filestream for txt write.
The question is, when I press F5 and try out the program it writes the files correctly, but when I close, do the files get deleted?
If I write a file in this way:
Table.WriteXml("tablexml.xml", XmlWriteMode.WriteSchema);
Where does the file get stored? will the file remain there for reading if i close the program that was running in debugmode (F5) ?