// 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 concatenates "Hello" and the variable ex: "Hello Mr. Mader"
// 5) Clear out the contents of the name variable.
// 6) Console Writeline : Output a line that concatenates "Hello" and the variable ex: "Hello "
// 7) Submit your dotnetfiddle link in Blackboard.
using System;
public class Program
{
public static void Main()
{string strEvalynn;
strEvalynn = " Evalynn";
string strHello;
strHello = " Hello";
Console.WriteLine(strEvalynn);
Console.WriteLine(strHello + strEvalynn);
Console.WriteLine(strHello);
}