我在我的应用程序上显示一些文本。这些文本存储在资源文件中。当我在发布模式下运行我的应用程序时,所有文本都正确加载,但是当我尝试在调试模式下运行时,一些文本的值是空值。
示例:
MySpaceName.Resources.Language.Resources.message_loadimages_error //(is null)
MySpaceName.Resources.Language.Resources.message_loadimages_error_title //(is correctly loaded, not null)
message_loadimages_error 在我的应用程序中正确设置:
<data name="message_loadimages_error" xml:space="preserve">
<value>Error while loading images...</value>
</data>
在 .cs 中:
/// <summary>
/// Recherche une chaîne localisée semblable à Error while loading images...
/// </summary>
public static string message_loadimages_error {
get {
return ResourceManager.GetString("message_loadimages_error", resourceCulture);
}
}
有任何想法吗?