博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C# 类库使用嵌入资源
阅读量:6842 次
发布时间:2019-06-26

本文共 404 字,大约阅读时间需要 1 分钟。

1.将资源文件的属性改成“嵌入资源”

2.

1    string assembleName = this.GetType().Assembly.GetName().Name;//本程序集名2             Stream stream = Assembly.GetExecutingAssembly().GetManifestResourceStream(string.Format("{0}.{1}", assembleName, xmlPath));//获取嵌入资源生成流,XMLPATH为嵌入资源路径,资源名称访问路径为:assemblename.文件夹名.资源名3             XmlTextReader reader = new XmlTextReader(stream);

 

转载于:https://www.cnblogs.com/localwz/p/3773144.html

你可能感兴趣的文章