码迷,mamicode.com
首页 > Windows程序 > 详细

C# 读自己的资源文件

时间:2015-09-29 08:43:58      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:

Assembly assm = this.GetType().Assembly;//Assembly.LoadFrom(程序集路径);
foreach (string resName in assm.GetManifestResourceNames())
{
Stream stream = assm.GetManifestResourceStream(resName);
ResourceReader rr = new ResourceReader(stream);
IDictionaryEnumerator enumerator = rr.GetEnumerator();
while (enumerator.MoveNext())
{
DictionaryEntry de = (DictionaryEntry)enumerator.Current;

MessageBox.Show(de.Key + ":" + de.Value);//是资源名

//是资源内容
}
}

C# 读自己的资源文件

标签:

原文地址:http://www.cnblogs.com/gisoracle/p/4845430.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!