文件名称:C# 从内存加载动态链接库
文件大小:1.97MB
文件格式:ZIP
更新时间:2021-09-28 10:01:00
C# 内存加载DLL 动态链接库
纯C# 实现的 从内存加载动态链接库,支持加壳的DLL,使用方便
class Program
{
public delegate Int32 CompressHandle(ref Byte dest,ref Int32 len, Byte [] source,Int32 sourcelen);
static void Main(string[] args)
{
Byte[] source = new byte[10000];
Byte[] dest = new byte[10000];
Int32 len = source.Length;
Byte[] dllBin = File.ReadAllBytes("zlib1.dll");
using (var dll = new DllLoader())
{
if (dll.LoadLibrary(dllBin))
{
var Compress = dll.GetProcDelegate
【文件预览】:
InvokeDll
----.vs()
--------InvokeDll()
----InvokeDll.sln(1KB)
----InvokeDll()
--------InvokeDll.csproj(4KB)
--------bin()
--------Program.cs(941B)
--------obj()
--------Win32()
--------DllLoader.cs(14KB)
--------App.config(184B)
--------Properties()