Quiz #6

1. Write the code to display a window with the text "My First Window" in the title bar.

using System.Windows.Forms;

public class Quiz6 : Form
{
public Quiz6() { Text = "My First Window"; }
static void Main() { Application.Run(new Quiz6()); } }