如何将资源从.resx保存到硬盘?

时间:2012-11-16 15:28:32

标签: c# .net resources resx

我有一个带有标准main.resx文件的Windows窗体项目,其中保存了.ecfg文件(配置文件)。

如何将此文件解压缩到硬盘?

1 个答案:

答案 0 :(得分:2)

检查资源文件上的命名空间。通常将它们放入属性namesapce中。然后,您可以像这样访问文件:

byte[] b = Properties.Main.Something;    //Something being the name of the resource
System.IO.File.WriteAllBytes(@"C:\temp\yourfile.ecfg", b);