gpt4 book ai didi

c# - ResourceManager - 如何找到嵌入式资源文件所需的基本名称?

转载 作者:行者123 更新时间:2023-11-30 17:14:32 26 4
gpt4 key购买 nike

我有一个从外部文件加载资源的库,如下所示:

ResourceManager rm = ResourceManager.CreateFileBasedResourceManager(stringsFileName, ResourcesDir, null)

现在我想将加载从外部文件更改为嵌入资源。我已将“.resources”文件附加到项目,并将其构建操作更改为“Embedded Resource”。加载如下:

   System.Resources.ResourceManager myManager = new
System.Resources.ResourceManager(resName,
myAssembly);

这编译得很好。但是,在运行时应用程序报告以下错误:

Could not find any resources appropriate for the specified culture or the neutral culture. Make sure "Strings.3.resources" was correctly embedded or linked into assembly "TestApp.Resources" at compile time, or that all the satellite assemblies required are loadable and fully signed.

无论我传递的名称如何,都会发生这种情况,所以我的问题是如何为我刚刚嵌入的资源文件找到正确的基本名称?

最佳答案

我相信资源名称是完全限定的,所以它将是 {assemblyNameSpace}.Strings.3.resources。

您可以使用像 dotPeek 这样的反汇编器/反编译器来确认这一点:http://www.jetbrains.com/decompiler/

关于c# - ResourceManager - 如何找到嵌入式资源文件所需的基本名称?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8605940/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com