Hi Brian,
Thanks for this great example. I sometimes got an NullReferenceException then running the code on program.cs line 123. After I replaced line 122 to 124 with the code below and the exception was fixed.
Task.Factory.StartNew((o) =>
{
var localCurrent = (TraceCallStack)o;
ResolveSymbolsForModule(localCurrent.CodeAddress.CodeAddresses, localCurrent.CodeAddress.ModuleFile);
}, current);
Best regards,
Bart Vries