我有一个带有标准main.resx
文件的Windows窗体项目,其中保存了.ecfg
文件(配置文件)。
如何将此文件解压缩到硬盘?
答案 0 :(得分:2)
检查资源文件上的命名空间。通常将它们放入属性namesapce中。然后,您可以像这样访问文件:
byte[] b = Properties.Main.Something; //Something being the name of the resource
System.IO.File.WriteAllBytes(@"C:\temp\yourfile.ecfg", b);