PowerArgs.CommandLineAction.CommandLineAction C# (CSharp) Метод

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

Creates a new command line action given an implementation.
public CommandLineAction ( Action actionHandler ) : System
actionHandler Action The implementation of the action.
Результат System
        public CommandLineAction(Action<CommandLineArgumentsDefinition> actionHandler)
            : this()
        {
            ActionMethod = new ActionMethodInfo(actionHandler);
            Source = ActionMethod;
        }

Same methods

CommandLineAction::CommandLineAction ( ) : System