How can I read from an embedded XML file - an XML file that is part of a c# project?
I\'ve added a XML file to my project and I want to read from it. I want the XML file to
You can also add the XML file as a Resource and then address its contents with Resources.YourXMLFilesResourceName (as a string, i.e. using a StringReader).