From 7cea80ef894703969a56d715b59a2305c25edbc7 Mon Sep 17 00:00:00 2001 From: Kyle Wascher Date: Fri, 2 Mar 2018 14:21:51 -0500 Subject: [PATCH] Update ReadMe to know about EnhancedStackTrace (#64) EnhancedStackTrace.Current --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 944d392..2e2cbe9 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,10 @@ Output the modern C# 7.0 features in stack traces in an understandable fashion t ``` exception.Demystify() ``` +Or instead of Environment.StackTrace +``` +EnhancedStackTrace.Current() +``` Resolves the stack back to the C# source format of the calls (and is an inspectable list of stack frames) Calling `.ToString()` on the Demystified exception will produce a string stacktrace similar to the following (without the comments):