我想将当前导入的一个程序集保存到C++程序内的本地磁盘中。如果我知道程序集的名称,可以保存它吗?
//access the assembly by name
HMODULE hAssem = GetModuleHandleA( "name.dll" );
//now somehow save to disk发布于 2014-01-13 22:49:37
使用AssemblyBuilder::Save()将动态程序集保存到磁盘
查看code example。
https://stackoverflow.com/questions/21094074
复制相似问题