Here's a snippet of code for extracting a resource from the current assembly. private static XmlDocument ExtractEmbeddedResource(string name) { Assembly executingAssembly = Assembly.GetExecutingAssembly(); string resourceName = executingAssembly.GetName().Name Read More...