获取应用程序标准资源管理器

时间:2011-05-03 08:07:17

标签: c# .net reflection resources

如何通过反射获取应用程序的ResourceManager,即条目程序集?

1 个答案:

答案 0 :(得分:1)

尝试这一点,其中rmc是完全限定的资源名称,如果使用默认方式(项目的属性,然后是新资源)来创建资源文件,它将是[YourProjectName] .Properties.Resources。

ResourceManager rm = new ResourceManager("rmc",Assembly.GetCallingAssembly());

您还可以使用资源的路径访问资源管理器,看看here