Advertisement
Charybdizs

Tutorial Program

Nov 28th, 2014
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.39 KB | None | 0 0
  1. using System;
  2. using System.Threading;
  3.  
  4. namespace Practice
  5. {
  6.     class Program
  7.     {
  8.         static void Main()
  9.         {
  10.  
  11.             string Name;
  12.            
  13.             Console.WriteLine("What is your name?");
  14.  
  15.             Name = Console.ReadLine();
  16.  
  17.             Console.WriteLine("Hello " + Name + "!");
  18.  
  19.             Thread.Sleep(2000);
  20.  
  21.             Console.WriteLine("Press Enter to exit the application.");
  22.            
  23.             Console.ReadLine();
  24.            
  25.         }
  26.     }
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement