我有两个资源文件:Resource.resx 和 Resource.fr.resx。
我希望能够通过使用以英语和法语加载资源Assembly.LoadWithPartialName
我可以.\fr\Resource.resx
通过使用加载法语资源Assembly.LoadWithPartialName
吗?
编辑1:
我目前正在使用:
var resMgr = new ResourceManager("Currency.Strings", assembly);
result = resMgr.GetString("Romania", CultureInfo.GetCultureInfo("fr"));
除了中性语言翻译,它不会带来任何东西。