summaryrefslogtreecommitdiff
path: root/winforms/hello.cs
blob: a3a0d7784b9a714d81739e3ab1f20356d4222584 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;
using System.Windows.Forms;

public class HelloWorld : Form
{
  static public void Main()
  {
    Application.Run(new HelloWorld());
  }

  public HelloWorld()
  {
    Text = "Hello, World!";
  }
}