AcManager.Tools.Helpers.DirectInput.DirectInputButtonEventArgs.DirectInputButtonEventArgs C# (CSharp) Метод

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

public DirectInputButtonEventArgs ( [ button ) : System
button [
Результат System
        public DirectInputButtonEventArgs([NotNull] DirectInputButton button) {
            if (button == null) throw new ArgumentNullException(nameof(button));

            Provider = button;
            IsPressed = button.Value;
        }
        
DirectInputButtonEventArgs