Mega Code Archive

 
Categories / C# / GUI Windows Form
 

Information message box

/* 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);         }     } }