using System.Windows.Forms; class ex : Form { ex() { Width = 620; Height = 400; Text = "hello"; } static void Main() { Application.Run(new ex()); } }