Newb1996
Newb1996

Reputation: 221

How to hook keyboard event in .NET Core using C#

In .NET Framework I could easy hook global keyboard events, but using .NET Core it is different, since Unix doesn't provide kernel.dll as Windows. How to hook keyboard events using .Net Core?

Upvotes: 3

Views: 1431

Answers (1)

Judah Gabriel Himango
Judah Gabriel Himango

Reputation: 60061

There isn't a way to do this in .NET Core. You'll need to write platform-specific code to do this on each platform you're deploying to.

Upvotes: 3

Related Questions