I need to list all of the characters from alt codes. (If you somehow don't know what that is, hold down ALT and press one on the number pad, then repeat and hit 2, etc.) Is there a way to do this without using key events? What exactly I'm going to do is something like this;
for (int i = 0; i < 10; i++) {
Console.Write(KeyCode(i)); //Obviously KeyCode() doesnt actually exist, thats what im asking for :P
}
I need this to work with Winforms and WPF if it matters, and Console would be nice to but I don't need it..