New features in C# 7.1
Deep-dive posts to new features of C# 7.1: default literal expressions, inferred tuple names, async main.
Deep dive to async Main
C# 7.1 introduces asynchronous Main method for console applications. It helps us to get rid of some ugly code to await for asynchronous methods. If Main method of console applications is application flow controller that makes multiple calls to asynchronous methods then async Main leads us to much cleaner code. This blog post is my deep dive to async Main.