如何读取dll里资源文件
本人亲自验证的几种方法,这里已xml文件为例
一、当前程序集
System.Xml. XmlDocument doc = new System.Xml.XmlDocument();//xml直接嵌入程序集 读取的方法
System.IO. Stream sm = Assembly .GetExecutingAssembly().GetManifestResourceStream( "XW.Common.Address.xml" );
本人亲自验证的几种方法,这里已xml文件为例
一、当前程序集
System.Xml. XmlDocument doc = new System.Xml.XmlDocument();