Hi, I have an embedded XML as Resource. When trying to load it like:
XDocument quoteDocument = XDocument.Load(Properties.Resources.Quotes);
I get an error (UriFormatException).
How to properly load an XML from resources? Thanks
|
|
|
|
|
|
|
Use the following for XDocument
While this code works for XmlDocument
|
|||
|
|
|
|
It also works with XDocument.Parse Thanks |
||
|