AdvancedLauncher.UI.Commands.ModelCommand.ModelCommand C# (CSharp) Method

ModelCommand() public method

public ModelCommand ( Action execute, Predicate canExecute ) : System
execute Action
canExecute Predicate
return System
        public ModelCommand(Action<object> execute, Predicate<object> canExecute)
        {
            _execute = execute;
            _canExecute = canExecute;
        }

Same methods

ModelCommand::ModelCommand ( Action execute ) : System