using System.Windows.Forms; class MyFirstApp { static void Main() { Form form = new Form(); Application.Run(form); } }