C#: Reading embedded XML file
Snippet:
Assembly assembly = Assembly.GetExecutingAssembly();
string filePath = assembly.GetName().Name + ".filename.xml";
using (Stream stream = assembly.GetManifestResourceStream(filePath))
{
if (stream != null)
{
// do something with Stream from file
}
}

(137)

