GUI Windows Forms C# Tutorial

using System; 
using System.Windows.Forms; 
 
class WinSkel : Form { 
 
  public WinSkel() { 
    Text = "A Windows Skeleton"; 
  }   
 
  [STAThread] 
  public static void Main() { 
    WinSkel skel = new WinSkel();
    Application.Run(skel); 
  } 
}