Is it possible to search for embedded files that match a specific search criteria (e.g. *.xml).
My Code at the moment (works just for files i know the Path to)
var fileName = "PATH.sample.xml";
var assembly = Assembly.GetExecutingAssembly();
Stream stream = assembly.GetManifestResourceStream(fileName);
StreamReader reader = new StreamReader(stream);
XmlDocument xmlDoc = new XmlDocument();
xmlDoc.LoadXml(reader.ReadToEnd());
1 Answer