首先确定使用的API所在的动态库,例:gettickcount 函数 在kerner32.dll中
第二步,声明到VB.net中 。有二种方法
2.1
<System.Runtime.InteropServices.DllImport("kernel32.dll",EntryPoint:="GetTickCount")> _
Public Function GetTickCount() As Long
End Function
2.2
Public Declare Auto Function GetTickCount Lib "kernel32.dll" Alias "GetTickCount" () As Long
还可以简写成以下形式
Public Declare Function GetTickCount Lib "kernel32" () As Long
第三步,使用函数
MsgBox(GetTickCount().ToString)