In .NET Exception.ToString() still outputs stack traces for C#1 so all the new features from C#2 -> C#7.2 come out as a garbled mess.
Ben.Demystifier converts stack traces in the exceptions back into the source code signatures - rather than the compiler intermediary rosyln output methods.
Particular highlights would be async noise, iterators, lamdbas and local functions.
Feedback appreciated!