Advertisement
Guest User

Untitled

a guest
Feb 19th, 2016
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. static void Main(string[] args)
  2. {
  3. Console.WriteLine("Enter Username: ");
  4.  
  5. string user = Console.ReadLine();
  6.  
  7. Console.Write("Enter Password: ");
  8.  
  9. string pass = Console.ReadLine();
  10.  
  11.  
  12. if(user == "Admin" && pass == "1234")
  13. Console.WriteLine("Successful login.");
  14. else
  15. Console.WriteLine("Successful login.");
  16.  
  17. Console.ReadKey();
  18.  
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement