DllImport引用dll
关键字DllImport手册中说找dll先是从本目录开始,再找system32目录,....
我在看一个例子时,有下面两句,用到了一个EUCPComm.dll,我怎么办找不到EUCPComm.dll放的位置在那里(该找的目录我都找了)?
[DllImport("EUCPComm.dll",EntryPoint="SendSMS")]
public static extern int SendSMS(string sn,string mn,string ct,string priority);