vote up 2 vote down star

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

flag

60% accept rate

2 Answers

vote up 4 vote down check

Use the following for XDocument

XDocument quoteDocument = XDocument.Parse(Properties.Resources.Quotes);

While this code works for XmlDocument

XmlDocument quoteDocument = new XmlDocument();
quoteDocument.LoadXml(Properties.Resources.Quotes);
link|flag
vote up 0 vote down

It also works with XDocument.Parse

Thanks

link|flag
I've changed my answer to use Parse as that is the method that shows up in the MSDN help. – Stevo3000 May 12 at 8:54

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.