Binarysharp.MemoryManagement.Windows.Keyboard.BaseKeyboard.PressRelease C# (CSharp) 메소드

PressRelease() 공개 메소드

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