如何从.net核心系统资源文件加载资源?

时间:2019-04-26 13:12:49

标签: c# winforms .net-core

在.Net框架中,我正在使用以下代码从Windows窗体程序集加载字符串资源:

ResourceManager systemRM = new ResourceManager("System.Windows.Forms", Assembly.GetAssembly(typeof(Form)));
var str = systemRM.GetString(<the resource name>);

在.net core 3中运行它,我得到了MissingManifestResourceException:

  

”找不到适合于指定文化或   中立文化。确保“ System.resources”正确   嵌入或链接到程序集“ System.ComponentModel.Primitives”处   编译时间,或者所需的所有附属程序集是   可加载且已完全签名。”

如何在.net核心中访问这种系统资源?
谢谢

0 个答案:

没有答案