Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Threading;
- namespace Practice
- {
- class Program
- {
- static void Main()
- {
- string Name;
- Console.WriteLine("What is your name?");
- Name = Console.ReadLine();
- Console.WriteLine("Hello " + Name + "!");
- Thread.Sleep(2000);
- Console.WriteLine("Press Enter to exit the application.");
- Console.ReadLine();
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement