I am currently exploring TPL and i am wondering if the following scenario is possible:
I'd like to create a nested structure with a single parent and multiple "child" tasks under it.
The structure is similar to this:
Parent Task
|
|-- Child Task A
|-- Child Task B
|-- ...
I would like the parent task to wait for all child tasks to complete, and access their results (in order to determine the result of itself).
I could not find any valuable information of nesting tasks and accessing their result from the parent.