アプリケーションにいくつかのテキストを表示しています。これらのテキストはリソース ファイルに保存されます。アプリケーションをリリース モードで実行すると、すべてのテキストが正しく読み込まれますが、デバッグ モードで実行しようとすると、一部のテキストの値が null になります。
例:
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);
}
}
何か案は?