// Directions: Code Practice 4-1
// Follow the instructions in the comments below, then submit your dotnetfiddle link in Blackboard.
using System;
public class Program
{
public static void Main()
// 1) Create a string variable called strName within the Main method.
string strName;
// 2) Assign your name to the variable.
strName = "Nickolas Moede";
// 3) Console.WriteLine : Output the variable. All that should show on the line is your name: "Carolyn Challoner"
Console.WriteLine(strName);
// 4) Console.WriteLine : Output a line using the variable with the following structure : "Hello Carolyn Challoner"
Console.WriteLine("Hello " + strName);
// 5) Clear out the contents of the name variable. (Use string.Empty)
strName = string.Empty;
// 6) Console.WriteLine : Output a line using the variable with the following structure : "Hello "
Console.WriteLine('"Hello "');
}