GUI Windows Forms C# Tutorial

using System.Windows.Forms;
   
class ShowForm
{
     public static void Main()
     {
          Form form = new Form();
   
          form.Show();
     }
}