我正在尝试访问c#codebehind中的resx。
我看到了这个答案: read string from .resx file in C#
,但不知道在本声明中代替“items”的内容:
ResourceManager rm = new ResourceManager("items", Assembly.GetExecutingAssembly());
在哪里可以看到resx的命名空间?
由于
答案 0 :(得分:0)
这是你想要做的吗?
string foo = GetLocalResourceObject("NameOfTheResource").ToString();