| CommandTState Constructor (Action, FuncTState, ActionTState, String) | 
  
    Namespace: 
   SD.Tools.Algorithmia.Commands
    Assembly:
   SD.Tools.Algorithmia (in SD.Tools.Algorithmia.dll) Version: 1.3.0.0 (1.3.17.0314)
Syntaxpublic Command(
	Action doFunc,
	Func<TState> getStateFunc,
	Action<TState> undoFunc,
	string description
)
Public Sub New ( 
	doFunc As Action,
	getStateFunc As Func(Of TState),
	undoFunc As Action(Of TState),
	description As String
)
Parameters
- doFunc
 - Type: SystemAction
The do func, used for performing the Do operation, which is a func which doesn't accept any parameters. - getStateFunc
 - Type: SystemFuncTState
The get state func, which is the func to use to get the state. - undoFunc
 - Type: SystemActionTState
The undo func, which is the func to undo the action performed by the doFunc. Can be the same as
            doFunc. - description
 - Type: SystemString
The description of the command. 
See Also