Binarysharp.MemoryManagement.Windows.Keyboard.BaseKeyboard.PressRelease C# (CSharp) Method

PressRelease() public method

Presses and releaes the specified virtual key to the window.
public PressRelease ( Keys key ) : void
key Keys The virtual key to press and release.
return void
        public void PressRelease(Keys key)
        {
            Press(key);
            Thread.Sleep(10);
            Release(key);
        }
        #endregion