摘要: using System;using System.Runtime.InteropServices;using System.Reflection;using System.Reflection.Emit;public class DllCaller : IDisposable{ [DllImport("Kernel32.dll")] static extern IntPtr LoadLibrary(string lpFileName); [DllImport("Kernel32.dll")] static extern IntPtr GetProcAd 阅读全文
posted @ 2012-02-06 12:34 Tammie-锴 阅读(1378) 评论(0) 推荐(0) 编辑