Let us say I have a C# class library project, which only contains xml files as embedded resources. I would like to access these resources from another solution project. As t
you can use Assembly.GetManifestResourceStream() to load the xml file from the embedded assembly.
System.IO.Stream s = this.GetType().Assembly.GetManifestResourceStream("ActivityListItemData.xml");
EDIT
You can use Assembly.Load() and load the target assembly and read the resource from there.
Assembly.LoadFrom("Embedded Assembly Path").GetManifestResourceStream("ActivityListItemData.xml");