Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
main.resxファイルが保存されている標準ファイル.ecfg(構成ファイル)を含むWindowsフォームプロジェクトがあります。
main.resx
.ecfg
このファイルをハードドライブに抽出するにはどうすればよいですか?
リソースファイルの名前空間を確認してください。通常、それらはプロパティの名前空間に配置されます。その後、次のようにファイルにアクセスできます。
byte[] b = Properties.Main.Something; //Something being the name of the resource System.IO.File.WriteAllBytes(@"C:\temp\yourfile.ecfg", b);