1
char typeClient = ' ';
bool clientValide = false;
while (!clientValide)
{
     Console.WriteLine("\nEntrez le type d'employé (c ou g) : ");
     clientValide = char.TryParse(Console.ReadLine(), out typeClient);
     if (clientValide)
         typeClient = 'c';
}

我想让它不会退出 while 除非字符是 'g' 或 'c' 帮助!:)

4

4 回答 4

5
string input;
do {
    Console.WriteLine("Entrez le type d'employé (c ou g):");
    input = Console.ReadLine();
} while (input != "c" && input != "g");

char typeClient = input[0];
于 2013-03-17T20:17:57.777 回答
5

是你用Console.ReadLine的吗,用户按或Enter后还要按。改为使用以使响应是即时的:cgReadKey

bool valid = false;
while (!valid)
{
    Console.WriteLine("\nEntrez le type d'employé (c ou g) : ");
    var key = Console.ReadKey();
    switch (char.ToLower(key.KeyChar))
    {
        case 'c':
            // your processing
            valid = true;
            break;
        case 'g':
            // your processing
            valid = true;
            break;
        default:
            Console.WriteLine("Invalid. Please try again.");
            break;
    }
}
于 2013-03-17T20:24:32.970 回答
0

你真的很亲密,我认为这样的事情对你很有效:

char typeClient = ' ';
while (typeClient != 'c' && typeClient != 'g')
{
    Console.WriteLine("\nEntrez le type d'employé (c ou g) : ");
    var line = Console.ReadLine();
    if (!string.IsNullOrEmpty(line)) { typeClient = line[0]; }
    else { typeClient = ' '; }
}

基本上,当用户输入某些内容时,它会将输入读入typeClient变量,因此循环将继续,直到他们输入gor c

于 2013-03-17T20:16:46.687 回答
-2

您可以ConsoleKeyInfo使用Console.ReadKey()

 ConsoleKeyInfo keyInfo;
 do {
   Console.WriteLine("\nEntrez le type d'employé (c ou g) : ");
   keyInfo = Console.ReadKey();
 } while (keyInfo.Key != ConsoleKey.C && keyInfo.Key != ConsoleKey.G);
   
于 2018-08-12T07:53:16.293 回答