0

我正在尝试在 c# 代码隐藏中访问 resx。

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

,但不知道在此语句中用什么代替“项目”:

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

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

谢谢

4

1 回答 1

0

这是你想要做的吗?

 string foo = GetLocalResourceObject("NameOfTheResource").ToString();
于 2013-11-04T15:54:19.513 回答