Abc.NCrafts.App.RelayCommand.RelayCommand C# (CSharp) Method

RelayCommand() public method

public RelayCommand ( Action execute, bool>.Func canExecuteEvaluator = null ) : System
execute Action
canExecuteEvaluator bool>.Func
return System
        public RelayCommand(Action<object> execute, Func<object, bool> canExecuteEvaluator = null)
        {
            _execute = execute;
            _canExecuteEvaluator = canExecuteEvaluator;
        }