获取组件内的嵌入式资源

冷暖自知 提交于 2019-11-28 02:21:55
 string resourceName = "CSharp.BLL" + ".aa.xml";

//获取当前运行的组件的嵌入式资源

//Assembly _assembly = Assembly.GetExecutingAssembly();

//引用的dll资源 

Assembly _assembly = Assembly.Load("CSharp.BLL");
Stream stream = _assembly.GetManifestResourceStream(resourceName);

 

if(stream!=null)

XmlDocument xmlDoc = null;
xmlDoc = new XmlDocument();
xmlDoc.Load(stream);

转载于:https://www.cnblogs.com/skywang/archive/2012/09/28/2707125.html

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!