
I copied exactly the same code from the example. but some of them didn't work and I don't know why. The following code didn't working (with error explanation)
input.KeyDelay = 1;
// 'Input' does not contain a definition for 'KeyDelay' and no accessible extension method 'KeyDelay' accepting a first argument of type 'Input' could be found (are you missing a using directive or an assembly reference?)
input.SendKeys(Keys.Enter, KeyState.Down);
//cannot convert from 'Interceptor.KeyState' to 'Interceptor.Keys'
input.SendKeys(Keys.Enter, KeyState.Up);
// cannot convert from 'Interceptor.KeyState' to 'Interceptor.Keys'
input.Unload();
// not support on this platform
I copied exactly the same code from the example. but some of them didn't work and I don't know why. The following code didn't working (with error explanation)