PowerArgs.CommandLineAction.CommandLineAction C# (CSharp) Method

CommandLineAction() public method

Creates a new command line action given an implementation.
public CommandLineAction ( Action actionHandler ) : System
actionHandler Action The implementation of the action.
return System
        public CommandLineAction(Action<CommandLineArgumentsDefinition> actionHandler)
            : this()
        {
            ActionMethod = new ActionMethodInfo(actionHandler);
            Source = ActionMethod;
        }

Same methods

CommandLineAction::CommandLineAction ( ) : System