GUI Windows Forms C# Tutorial

using System;
using System.Windows.Forms;
public class EmptyForm : System.Windows.Forms.Form
{
  public EmptyForm()
  {
  }
  public static int Main()
  {
    Application.Run(new EmptyForm());
    return 0;
  }       
}