using System.Text; using System.Threading.Tasks; namespace CSharpLanguageFundamentals { class Program { static void Main(string[] args) { //Declare a string variable string myName; //Prompt the user to enter his/her name Console.WriteLine("Please Enter your Name: "); //The name entered in the console will be read and set to the variable "myName" myName = Console.ReadLine(); //Print Hello "myName". {0} is the placeholder for "myName" Console.WriteLine("Hello {0}", myName); //Exit The program when user clicks on any key Console.WriteLine("\nPlease press Enter to Exit"); Console.Read(); } } }