如何在VB.NET中使用?

前端之家收集整理的这篇文章主要介绍了如何在VB.NET中使用?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何在 VB.NET中DLLImport事情?一个例子是:
<DllImport("user32.dll",SetLastError:=True,CharSet:=CharSet.Auto)> _
Private Shared Function GetWindowText(ByVal hwnd As IntPtr,ByVal lpString As StringBuilder,ByVal cch As Integer) As Integer

End Function

如果我把它放在一个Class或其他地方,我得到“DLLimport没有定义”我正在使用VisualStudio2008专业版

您必须将Imports System.Runtime.InteropServices添加到源文件的顶部。

或者,您可以完全限定属性名称

<System.Runtime.InteropService.DllImport("user32.dll",_
    SetLastError:=True,CharSet:=CharSet.Auto)> _
原文链接:https://www.f2er.com/vb/256073.html

猜你在找的VB相关文章