获取特定资源字符串的值

时间:2017-11-14 20:09:34

标签: c# multilingual resourcemanager

我开发了一个多语言应用程序,我的资源文件位于App_GlobalResources中。资源文件结构如下:

App_GlobalResources文件

-------- Resource.ar.resx

-------- Resource.resx

我想用两种文化显示resourcekey值。如何在两种文化中获得特定resourcekey的值。

1 个答案:

答案 0 :(得分:0)

您可以使用ResourceManager

执行此操作
        ResourceManager rm = new ResourceManager(typeof(*Your Resource Class*));
        rm.GetString("Resource Key", new CultureInfo("en"));
        rm.GetString("Resource Key", new CultureInfo("ar"));