EnumerateAllChildTasks

Project.EnumerateAllChildTasks method

Recursively enumerates all project’s tasks including root task.

public IEnumerable<Task> EnumerateAllChildTasks()

Return Value

IEnumerable which can be used to iterate over all project’s tasks.

Remarks

Provides a more lightweight way to iterate over tasks compared to SelectAllChildTasks method as it does not allocate memory for all tasks.

See Also