dynamic d = new PInvoke("libc");
d.printf("I have been clicked %d times", times);
在这种方式下,无需声明函数类型,非常直接。
在这个基础上,zhongzf进一步完善了这个方法,增加了返回值的支持,和ref、out属性参数的支持。
dynamic user32 = new DynamicDllImport("user32.dll", callingConvention: CallingConvention.Winapi);
user32.MessageBox(0, "Hello World", "Platform Invoke Sample", 0);
这个项目在google上开源的http://code.google.com/p/dynamicdllimport/,感兴趣的朋友可以看一下。