class Work { [DllImport("user32.dll")] static
extern void mouse_event(MouseEventFlag flags, int dx, int dy, uint data, UIntPtr
extr...
分类:
其他好文 时间:
2014-07-22 23:06:55
阅读次数:
347
2014-04-30更新剔除了使用网络上烂大街的SQLite使用方法(原因android下无法读取数据),使用libSQLite3.so,通过DLLImport,在C#代码里直接调用C接口这种原生调用SQLite的方式,我在pc、android上亲测无误,ios没测过,但是stackoverflow...
分类:
数据库 时间:
2014-07-22 23:06:53
阅读次数:
852
[DllImport("advapi32.DLL", SetLastError =
true)]public static extern int LogonUser(string lpszUsername, string lpszDomain,
string lpszPassword, int dw...
分类:
其他好文 时间:
2014-05-08 21:05:26
阅读次数:
274
在C#中调用别人的DLL的时候有时候出现尝试读取或写入受保护的内存。这通常指示其他内存已损坏。在传值的时候还是用指针,再在C#中做转换就好了。解决办法:[DllImport("APPLISTCC.dll")]publicstaticexternstringTestFunc1(stringparam1...
分类:
其他好文 时间:
2014-04-30 03:44:41
阅读次数:
540
一:新建类HotKeys命名空间:using
System.Runtime.InteropServices;二:注册热键API[DllImport("user32")]public static
extern bool RegisterHotKey(IntPtr hWnd, Int32 id, UI...
分类:
其他好文 时间:
2014-04-29 16:25:46
阅读次数:
330