Wieso verschwindet der erste Buchstabe im folge WriteLine(), wenn ich auf „Esc“ tippe? Und wie kann ich dieses verhindern?
code:
using System;
namespace ConsoleEscapApp
{
class Program
{
static void Main(string[] args)
{
bool b=false;
do
{
Console.WriteLine(„Hello World!“);
ConsoleKeyInfo x = Console.ReadKey();
Console.WriteLine("");
} while (b==false);
}
}
}