// Directions: Practice #4-1
// 1) Create string variable called strName within the Main method.
// 2) Assign your name to the variable.
// 3) Console Writeline : Output the variable : i.e. Mr. Mader
// 4) Console Writeline : Output a line that concantenates "Hello " and the variable ex: "Hello Mr. Mader"
// 5) Clear out the contents of the name variable.
// 6) Console Writeline : Output a line that concantenates "Hello " and the variable ex: "Hello "
// 7) Submit your dotnetfiddle link in Blackboard.
/* OUTPUT SHOULD LOOK SIMILAR TO THIS (but with your name):
Mr. Mader
Hello Mr. Mader
Hello
*/
using System;
public class Program
{
public static void Main()
String strName;
Console.WriteLine(strName);
Console.WriteLine("Hello " + strName);
Console.WriteLine("Hello");
}