本人现在用DLLImport方式来调用ftpdll.dll[DllImport("ftpdll.dll", SetLastError = true)]
public static extern int FTPopen(string host, int port);[DllImport("ftpdll.dll", SetLastError = true)]
public static extern int FTPsend(string dir, string destdir);[DllImport("ftpdll.dll", SetLastError = true)]
public static extern int FTPclose();可一旦调用到具体方法(比如FTPopen)时就报以下:无法加载 DLL“ftpdll.dll”: 找不到指定的模块。 (异常来自 HRESULT:0x8007007E)请各位大侠帮忙分析分析问题出在哪里,唯有及时送分以表谢意!多谢!