在我的项目中,我无法加载 dll 文件
dll 文件 --> 平台目标是 x86
我的项目——>平台目标是Anycpu
机器正在运行 64 位操作系统
这是我使用的代码
pDll = NativeMethods.LoadLibrary(dllname);
// some code here
static class NativeMethods
{
[DllImport("kernel32.dll")]
public static extern IntPtr LoadLibrary(string dllToLoad);
[DllImport("kernel32.dll")]
public static extern IntPtr GetProcAddress(IntPtr hModule, string procedureName);
[DllImport("kernel32.dll")]
public static extern bool FreeLibrary(IntPtr hModule);
}
为什么我无法加载这个 dll 文件?
对不起,我的英语不好