I have 3 tasks:
private async Task FeedCat() {} private async Task SellHouse() {} private async Task BuyCar() {}
You can use Task.WhenAll as mentioned, or Task.WaitAll, depending on whether you want the thread to wait. Take a look at the link for an explanation of both.
Task.WhenAll
Task.WaitAll
WaitAll vs WhenAll