Task.execute C# (CSharp) Method

execute() public method

public execute ( ) : bool
return bool
    public override bool execute()
    {
        return myDelegate();
    }

Usage Example

Exemplo n.º 1
0
 public void redo()
 {
     if (current < _tasks.Count)
     {
         task = _tasks[current++];
         task.execute();
     }
 }
All Usage Examples Of Task::execute