for (Keys k = Keys.A; k <= Keys.Z; k++)
{
if (KeyPress(k))
Text += k;
}
This code detects the key buttons I pressed in my keyboard and it will print out what key is pressed in the console. However, I pressed ‘a’ on the keyboard but it comes out as ‘A’. How do I fix this?
After looking at your provided code, it should be a simple modification: