GetManifestResourceStream的使用
有1个项目较Bag(当然DLL也是Bag),下面有1个较after的XML文件,我想通过DLL获取XML,并对他进行修改
System.Reflection.Assembly dll = System.Reflection.Assembly.LoadFile(Application.StartupPath + "\\Bag.dll");
System.IO.Stream XmlsPath = dll.GetManifestResourceStream("Bag.after.xml");
XmlDocument mdoc = new XmlDocument();
mdoc.Load(XmlsPath);
这么写为什么XmlsPath 的值总是为NULL啊
还有XmlsPath 能不能放进 mdoc.Load(XmlsPath);的啊?
补充:.NET技术 , C#