BoringHeroes.Interaction.KeyboardHook.KeyboardHook C# (CSharp) Метод

KeyboardHook() публичный Метод

public KeyboardHook ( ) : System
Результат System
        public KeyboardHook()
        {
            // register the event of the inner native window.
            _window.KeyPressed += delegate(object sender, KeyPressedEventArgs args)
            {
                if (KeyPressed != null)
                    KeyPressed(this, args);
            };
        }