如何静态访问 .resx 文件
目前,我像这样访问我的资源 .resx 文件:
ResourceManager manager = new ResourceManager("Resources.Messages", Assembly.Load("App_GlobalResources"));
string test = manager.GetString("EmailBodyMagazine", System.Globalization.CultureInfo.CurrentCulture);
我正在尝试创建一个静态类 MessageResource 来访问资源文件,以便从任何代码调用此类,我需要做的就是:
string test = MessageResource.EmailBodyMagazine
如何实现此目的?
Currently I access my resource .resx file like this:
ResourceManager manager = new ResourceManager("Resources.Messages", Assembly.Load("App_GlobalResources"));
string test = manager.GetString("EmailBodyMagazine", System.Globalization.CultureInfo.CurrentCulture);
I'm trying to create a static class MessageResource that accesses the resource file so that to call this class from any code all I need to do is this:
string test = MessageResource.EmailBodyMagazine
How can I achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 VS2008 打开 .resx 文件。在 .resx 编辑器工具栏中,将“访问修饰符”更改为“公共”。这将允许从任何引用 App_GlobalResources 程序集的程序集访问资源(例如:Messages.EmailBodyMagazine)。
您还可以在此处找到快速教程。
Open the .resx file using VS2008. From the .resx editor toolbar change the 'Access Modifier' to 'Public'. This will allow access to the resources from any asssembly that references the App_GlobalResources assembly (ex: Messages.EmailBodyMagazine).
You can also find a quick tutorial here.