通过dymamic简化Pinvoke调用

Miguel de Icaza 在它的blog" C#'s Dynamic in Mono" 中演示了在Mono 上通过dymamic 简化Pinvoke 调用。

    dynamic d = new PInvoke("libc");
    d.printf("I have been clicked %d times", times);

在这种方式下,无需声明函数类型,非常直接。

在这个基础上,zhongzf进一步完善了这个方法,增加了返回值的支持,和refout属性参数的支持。

    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/,感兴趣的朋友可以看一下。

你可能感兴趣的:(in)