获取resx的命名空间以访问字符串

时间:2013-11-04 15:45:30

标签: c# resx

我正在尝试访问c#codebehind中的resx。

我看到了这个答案: read string from .resx file in C#

,但不知道在本声明中代替“items”的内容:

ResourceManager rm = new ResourceManager("items", Assembly.GetExecutingAssembly());

在哪里可以看到resx的命名空间?

由于

1 个答案:

答案 0 :(得分:0)

这是你想要做的吗?

 string foo = GetLocalResourceObject("NameOfTheResource").ToString();