我有一个带有资源文件的 mvc 项目,这是自动生成文件中的名称空间Designer.cs
:namespace eWarranty.Languages
在我的源代码中,我创建了新的ResourceManager
:
var resourceManager = new System.Resources.ResourceManager("eWarranty.Languages", System.Reflection.Assembly.GetExecutingAssembly());
但我得到这个错误:Additional information: Could not find any resources appropriate for the specified culture or the neutral culture.
我觉得我的ResourceManager
不对。如何定义一个赖特实例ResourceManager
?