Task.execute C# (CSharp) 메소드

execute() 공개 메소드

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

Usage Example

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