How to await the execution of 2 or more simultaneous async operations ?
I have 2 async operations which are fired in 2 separate calls on a single button click. How can I wait on completion of both the async operations ?
Task.WaitAll Method (Task[]) (System.Threading.Tasks)
See Asynchronous programming in .NET (Windows Store apps using C#/VB/C++ and XAML) for an overview.
--Rob