Check out example codes for "run async method parallel c#". It will help you in understanding the concepts better.
Code Example 1
public Task<Thing[]> GetThingsAsync()
{
var first = GetExpensiveThingAsync();
var second = GetExpensiveThingAsync();
return Task.WhenAll(first, second);
}
Learn ReactJs, React Native from akashmittal.com