Keyboard.CurrentKeyState C# (CSharp) 메소드

CurrentKeyState() 공개 정적인 메소드

CurrentKeyState Returns the current physical state of a virtual key, independent of any message processing that is currently occuring.
public static CurrentKeyState ( int vKey ) : short
vKey int one of the virtual key codes
리턴 short
    public static short CurrentKeyState(int vKey)
    {
        return 0;
        //return User32.GetAsyncKeyState(vKey);
    }