[DllImport("gdi32.dll")]
static extern bool Polygon(IntPtr hdc, POINT [] lpPoints, int nCount);
VB.NET Signature:
<DllImport("gdi32.dll")> Private Shared Function Polygon( _
ByVal hdc As Integer, _
ByRef lpPoint As Object, _
ByVal nCount As Integer) _
As Integer
End Function