Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // A Hello World! program in C#.
- using System;
- using System.Windows.Forms;
- public class HelloWorld : Form
- {
- static public void Main ()
- {
- Application.Run (new HelloWorld ());
- }
- private TextBox textBox;
- public HelloWorld ()
- {
- InitializeComponent();
- }
- private void InitializeComponent()
- {
- this.textBox = new System.Windows.Forms.TextBox();
- this.Text = "Hello Forms";
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement