C# 从资源管理器释放文件

 private void ExtractNormalFileInResx(byte[] resource, String path)
   {
    FileStream file
= new FileStream(path, FileMode.Create); file.Write(resource, 0, resource.Length); file.Flush(); file.Close(); }

调用时:

ExtractNormalFileInResx(IT6831A.Properties.Resources._7SEG, Application.StartupPath + @"\7SEG.ttf");

 

重点是要把资源内嵌到资源管理器中。

 

posted @ 2021-08-28 11:01  Cmale  阅读(298)  评论(0编辑  收藏  举报