[DllImport("user32.dll")]这句代码是啥意思啊?没学过,解释下…
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[DllImport("user32.dll")]这句代码是啥意思啊?没学过,解释下…相关的知识,希望对你有一定的参考价值。
还有这两句:[return: MarshalAs(UnmanagedType.Bool)]private static extern bool GetWindowRect(IntPtr hWnd, out RECT lpRect);
这是PInvoke,在项目中,有些dll无法通过引用直接导入,会采用这种通过非托管方式导入dll。这里是导入user32.dll。 参考技术A [DllImport("user32.dll")]导入DLLprivate static extern bool GetWindowRect(IntPtr hWnd, out RECT lpRect);
DLL里面封装的方法
以上是关于[DllImport("user32.dll")]这句代码是啥意思啊?没学过,解释下…的主要内容,如果未能解决你的问题,请参考以下文章