Reputation: 221
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
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