Alexandria.Common.RelayCommand.RelayCommand C# (CSharp) Метод

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

Creates a new command that can always execute.
public RelayCommand ( System.Action execute ) : System
execute System.Action The execution logic.
Результат System
        public RelayCommand(Action execute)
            : this(execute, null)
        {
        }

Same methods

RelayCommand::RelayCommand ( System.Action execute, Func canExecute ) : System