反转 ResourceManager
如果执行 ResourceManager.GetString(Key),则可以获得资源中项目的值。 有没有办法进行反向查找以从给定值的资源中获取密钥(本质上是反翻译)?
If you do ResourceManager.GetString(Key), you can get the value of an item in a resource. Is there a way to do a reverse lookup to get the key from the resource given the value (essentially de-translate)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该能够获取 ResourceSet 并迭代它的值,如果它们相等则返回键。 请记住,您需要比较值,而不是参考。 类似的东西(未编译和测试,但类似)
You should be able to get the ResourceSet and iterate over it's values and return the key if they are equal. Just remember, you need to compare values, not references. Something along these lines (Not compiled and tested, but something similar)