如何静态访问 .resx 文件

发布于 2024-11-26 11:28:46 字数 432 浏览 3 评论 0原文

目前,我像这样访问我的资源 .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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

绅士风度i 2024-12-03 11:28:46

使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文