Let's say I have a bunch of initializers that do things like prime a cache, retrieve configuration data from some separate service, etc.
It would be nice if I could choose to run all of them potentially in parallel, through a method that does a Task.WhenAll(...)
instead of awaiting each initializer individually.
It's not a huge deal, but I think it'd be nice to have.