2
Reply

C# Console Password Entering Limitation

Pisi Can

Pisi Can

Nov 8 2015 2:12 PM
503
Hi all! I am new to C#. First steps. I want to write a simple console application that asks the user to enter the password. I want to limit the attempts. For example after three failed attempts console will write "you've failed".
Best wishes
 
 Below code gives the user infinite rights to try:
 
string Pass= "";
do
{
Console.Write("Enter Password : ");
Pass= Console.ReadLine();
} while (Pass!= "9999");
Console.WriteLine("Success!...");
Console.ReadKey();
 

Answers (2)