我想要做的是避免每次我将应用程序提供给我的客户时重新编译整个项目,所以我需要动态地访问这个字符串.
那么,如果只在执行时刻删除文件名,那么如何访问(在应用程序执行期间)到一个resx文件?
从此以后我写的东西类似:
PropertIEs.Resources.MyString1
其中Resource是我的Resource.resx文件.
但我需要这样的东西:
GetStringFromDynamicResourcefile("Myfile.resx","MyString1");
可能吗?
谢谢
标记
Dictionary<string,string> resourceMap = new Dictionary<string,string>();public static voID Func(string filename){ ResXResourceReader rsxr = new ResXResourceReader(filename); foreach (DictionaryEntry d in rsxr) { resourceMap.Add(d.Key.ToString(),d.Value.ToString()); } rsxr.Close();}public string GetResource(string resourceID){ return resourceMap[resourceID];}总结
以上是内存溢出为你收集整理的c# – 使用动态文件名读取存储在资源文件(resx)中的字符串全部内容,希望文章能够帮你解决c# – 使用动态文件名读取存储在资源文件(resx)中的字符串所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)