首页 > Web开发 > 详细

在 .net 中释放嵌入的资源

时间:2014-04-17 15:20:34      阅读:534      评论:0      收藏:0      [点我收藏+]

 

bubuko.com,布布扣

 

private static void ExtractResourceToFile(string resourceName, string filename)
{
    if (!System.IO.File.Exists(filename))
        using (System.IO.Stream s = System.Reflection.Assembly.GetExecutingAssembly().GetManifestResourceStream(resourceName))
        using (System.IO.FileStream fs = new System.IO.FileStream(filename, System.IO.FileMode.Create))
        {
            byte[] b = new byte[s.Length];
            s.Read(b, 0, b.Length);
            fs.Write(b, 0, b.Length);
        }
}

 

ExtractResourceToFile("MergeCell.Interop.Excel.dll", "Interop.Excel.dll");
ExtractResourceToFile("MergeCell.Office.dll", "Office.dll");    

 

VB.Net中资源的名称为:项目默认命名空间.资源文件名 
C#中则是:项目命名空间.资源文件所在文件夹名.资源文件名 
例:
[C# code]
Assembly assm = Assembly.GetExecutingAssembly();
istr = assm.GetManifestResourceStream("项目命名空间.资源文件所在文件夹名.资源文件名");

在 .net 中释放嵌入的资源,布布扣,bubuko.com

在 .net 中释放嵌入的资源

原文:http://www.cnblogs.com/leavind/p/3670418.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!