.cs ファイルと同じレベルにあるリソース ファイルにアクセスしようとしています。
私が使用しているコードは次のとおりです。
ResourceManager res = ResourceManager.CreateFileBasedResourceManager("Resource1", ".", null);
string s = res.GetString("String1");
ただし、これにより次の例外が発生します。
MissingManifestResourceException ディスク上の指定されたカルチャ (またはニュートラル カルチャ) に適したリソースが見つかりませんでした。baseName: Resource1 locationInfo: fileName: Resource1.resources
どうすればこれを解決できますか?