如何从存储在我自己的自定义文件夹位置的 .resx 文件中获取资源值?

发布于 2024-12-03 17:00:28 字数 180 浏览 0 评论 0 原文

我想从 .resx 文件中获取未存储在本地资源文件夹中的资源值。

我该怎么做?

我当前正在使用生成的强类型文件,但在这种情况下,我无法使用强类型文件,因为我正在循环中动态构建密钥(这是一个字符串)。

GetLocalResourceObject 似乎不起作用,因为它似乎只在特定位置查找资源文件。

I want to get a resource value from my .resx file that is NOT stored in the local resource folder.

How can I do this?

I am currently using the strongly typed file that is generated, but in this case I can't use the strongly typed as I am building the key (which is a string) in a loop dynamically.

GetLocalResourceObject doesn't seem to work as it only seems to look for the resource file in a specific location.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

栀梦 2024-12-10 17:00:28

使用 GetLocalResourceObject 时,您可以传递路径。请记住,如果未编译外部源,您可能会遇到问题。

 HttpContext.GetLocalResourceObject("~/Views/SomeView/Index.cshtml", "Prop");

这需要在以下位置有一个 resx 文件。

 ~/Views/SomeView/App_LocalResources/Index.cshtml.resx

您还可以预编译 resx 资源并创建自定义提供程序来定位它们。

You can pass a path to when using GetLocalResourceObject. Bare in mind you may hit problems if the external source is not get compiled.

 HttpContext.GetLocalResourceObject("~/Views/SomeView/Index.cshtml", "Prop");

This expects a resx file at the following location.

 ~/Views/SomeView/App_LocalResources/Index.cshtml.resx

You can also precompile resx resources and create a custom provider to locate them.

新雨望断虹 2024-12-10 17:00:28

You can extend the ResourceManager like the StringsResourceManager used in the article .NET String Resources.

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