Information message box

image_pdfimage_print


   

/*
C# Programming Tips & Techniques
by Charles Wright, Kris Jamsa

Publisher: Osborne/McGraw-Hill (December 28, 2001)
ISBN: 0072193794
*/
namespace nsFirst
{
    using System;
    public class FormsMessageBox
    {
        static public void Main()
        {
            System.Windows.Forms.MessageBox.Show ("Hello, C# World!", "Howdy",
                       System.Windows.Forms.MessageBoxButtons.OK,
                       System.Windows.Forms.MessageBoxIcon.Information);
        }
    }
}