Asynchrnous Programming in C# Cheat Sheet
Tip: Dont go for Async VoidYou get possibly three return types for async methods and those would be
Task
Task < T >
void
Its always bett
...