GUI Windows Forms C# Tutorial

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