如何从存储在我自己的自定义文件夹位置的 .resx 文件中获取资源值?
我想从 .resx 文件中获取未存储在本地资源文件夹中的资源值。
我该怎么做?
我当前正在使用生成的强类型文件,但在这种情况下,我无法使用强类型文件,因为我正在循环中动态构建密钥(这是一个字符串)。
GetLocalResourceObject 似乎不起作用,因为它似乎只在特定位置查找资源文件。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
GetLocalResourceObject
时,您可以传递路径。请记住,如果未编译外部源,您可能会遇到问题。这需要在以下位置有一个 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.This expects a resx file at the following location.
You can also precompile resx resources and create a custom provider to locate them.
您可以像文章 StringsResourceManager 一样扩展 ResourceManager ="nofollow">.NET 字符串资源。
You can extend the ResourceManager like the StringsResourceManager used in the article .NET String Resources.