WinDbg Cheat Sheet for .NET Developers

This post gives you a simple summary of the most needed WinDbg commands for .NET. The most of the examples are heavily inspired by Konrad Kokosa’s excellent ...

Using async main in .NET Core

Recently, I’ve tried to run a .NET Core console app with an async main method. The main method simply calls an async method using async and await. The progra...