我正在尝试使用 CSharpCodeProvider 编译下面的代码。该文件已成功编译,但是当我单击生成的 EXE 文件时,出现错误(Windows 正在搜索此问题的解决方案)并且没有任何反应。
当我使用 CSharpCodeProvider 编译下面的代码时,我MySql.Data.dll
使用这行代码将其添加为嵌入式资源文件:
if (provider.Supports(GeneratorSupport.Resources))
cp.EmbeddedResources.Add("MySql.Data.dll");
该文件已成功嵌入(因为我注意到文件大小增加了)。
在下面的代码中,我尝试提取嵌入的 DLL 文件并将其保存到 System32,但由于某种原因,下面的代码不起作用。
namespace ConsoleApplication1
{
class Program
{
public static void ExtractSaveResource(String filename, String location)
{
//Assembly assembly = Assembly.GetExecutingAssembly();
Assembly a = .Assembly.GetExecutingAssembly();
//Stream stream = assembly.GetManifestResourceStream("Installer.Properties.mydll.dll"); // or whatever
//string my_namespace = a.GetName().Name.ToString();
Stream resFilestream = a.GetManifestResourceStream(filename);
if (resFilestream != null)
{
BinaryReader br = new BinaryReader(resFilestream);
FileStream fs = new FileStream(location, FileMode.Create); // Say
BinaryWriter bw = new BinaryWriter(fs);
byte[] ba = new byte[resFilestream.Length];
resFilestream.Read(ba, 0, ba.Length);
bw.Write(ba);
br.Close();
bw.Close();
resFilestream.Close();
}
// this.Close();
}
static void Main(string[] args)
{
try
{
string systemDir = Environment.SystemDirectory;
ExtractSaveResource("MySql.Data.dll", systemDir);
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
Console.ReadKey();
}
}
}
}
如何提取作为资源嵌入的 DLL 文件并将其保存到 System32?