ShellAbout (shell32)
Last changed: -75.165.245.34

.
Summary

C# Signature:

[DllImport("shell32.dll")]
static extern int ShellAbout(IntPtr hWnd, string szApp, string szOtherStuff,
   IntPtr hIcon);

User-Defined Types:

None.

Notes:

None.

Tips & Tricks:

using System.Runtime.InteropServices;
using System.Reflection;

Sample Code:

ShellAbout(this.Handle,
       "AppName " + Assembly.GetExecutingAssembly().GetName().Version.ToString(),
       "",
       IntPtr.Zero);

Alternative Managed API:

Do you know one? Please contribute it!

Documentation
ShellAbout on MSDN