MessageBox (coredll)
Last changed: -131.107.192.178

.
Summary
TODO - a short description

C# Signature:

[DllImport("user32.dll", SetLastError = true, CharSet= CharSet.Auto)]

public static extern int MessageBoxW(int hWnd, String text, String caption, uint type);

VB Signature:

<System.Runtime.InteropServices.DllImport("kernel32.dll", _

    SetLastError:=False)> _
    Public Shared Function MessageBoxW(ByVal hWnd As Integer, _
    ByVal txt As String, ByVal caption As String, _
    ByVal Typ As Integer) As Integer
    End Function

User-Defined Types:

None.

Alternative Managed API:

System.Windows.Forms.MessageBox.Show(string message)

Notes:

None.

Tips & Tricks:

Please add some!

Sample Code:

MessageBoxW(0, "Hello from C#", "pinvoke.net", 0);

Documentation
MessageBox on MSDN