c# if specific key is pressed code example
Example: how to detect if a key is pressed in c#
//...
using System.Windows.Input;
class Main {
public void Main() {
while(true) {
if(Keyboard.IsKeyPressed(Key.A)) {
//...
}
return;
}
}
}