c#中
when(true){
if (GetAsyncKeyState(1) != 0 && GetAsyncKeyState(1) != 1) {
Console.WriteLine("11")
if (GetAsyncKeyState(1) != 0 && GetAsyncKeyState(1) != 1) {
Console.WriteLine("22")
}
}
}
我想按下左键输出11,但是发现每次开始循环会先输出一个11,按下以后输出11和22。我没按左键为什么会输出一个11呢?