Mega Code Archive

 
Categories / C# Tutorial / GUI Windows Forms
 

Show method with message and window title

using System; using System.Windows.Forms; class MainForm : Form {     [STAThread]     public static void Main() {         MessageBox.Show("Welcome," , "Visual C#");     } }