Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

The program will be graded as follows: 3 points: Correct \"Program Name/Author\"

ID: 3784746 • Letter: T

Question

The program will be graded as follows: 3 points: Correct "Program Name/Author" information At the beginning of this and all programs, you will need to complete a "Program block should This block goes above the beginning of any code. This include: Program Name Hello World Developer: your name Date: this is the date written or the due date Purpose let's start all of these with the lab ll. Then put a short description of what the program does. For example, this lab would have 5 points: Syntax, Compiles, & Runs & Code we submit solutions, not problems. The program needs to run when Iget it want to learn to write good code. The points earned will be dependent on the variable names, object (stay with conventions), and the general code. Ail ynurself "poes this code look like the examples?"

Explanation / Answer

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace HelloWorld
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();

}

private void button1_Click(object sender, EventArgs e)
{
MessageBox.Show(textBox1.Text);
Console.ReadLine();
}
}
}