This is the code for my keyhooking class, but it doesn\'t work. I was wondering if someone can tell me why? I\'m instansiating it in another Console application. The debug m
Are you calling Application.Run in your Main function?
Application.Run
Main
The standard Console thread doesn't have a message loop, which is required for hooks to work properly, Application.Run takes care of that.