Skip to content

Instantly share code, notes, and snippets.

@wtarr
Created August 12, 2013 08:25
Show Gist options
  • Save wtarr/6209058 to your computer and use it in GitHub Desktop.
Save wtarr/6209058 to your computer and use it in GitHub Desktop.
Loading a embedded resource
var doc = new XmlDocument();
using (var stream = this.GetType().Assembly.GetManifestResourceStream("MyNameSpace.Configurations.xml"))
{
if (stream != null) doc.Load(stream);
}
_xmlcontents = doc.InnerXml;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment