在项目中有三个资源文件Exceptions.resx
Exceptions.en.resx
Exceptions.de.resx
在某些时候,有必要检索一些字符串资源。为此,我使用Exceptions.ResourceManager.GetString(name, culture)
问题是,如果我要求Exceptions.de.resx
中不存在某些密钥,我会收到Exceptions.en.resx
的值,而不是Exceptions.resx
的值。
这是预期的行为吗?我希望Exceptions.resx
成为后备。我错过了什么?
P.S。它是一个asp.net核心项目,如果它确实改变了什么。