You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried to use Demystifier and it wasn't working correct. I debug source code and it throws exception in PortablePdbReader.
System.TypeLoadException:
at w System.Diagnostics.Internal.PortablePdbReader..ctor()
at w System.Diagnostics.EnhancedStackTrace.GetFrames(StackTrace stackTrace)
at w System.Diagnostics.EnhancedStackTrace.GetFrames(Exception exception)
at w System.Diagnostics.EnhancedStackTrace..ctor(Exception e)
at w System.Diagnostics.ExceptionExtentions.Demystify[T](T exception)
Exception has been thrown n this part of code:
using (PortablePdbReader portablePdbReader = new PortablePdbReader())
{
for (int index = 0; index < frames.Length; ++index)
{
StackFrame stackFrame = frames[index];
MethodBase method = stackFrame.GetMethod();
if (EnhancedStackTrace.ShowInStackTrace(method) || index >= frames.Length - 1)
{
string fileName = stackFrame.GetFileName();
int row = stackFrame.GetFileLineNumber();
int column = stackFrame.GetFileColumnNumber();
int ilOffset = stackFrame.GetILOffset();
if (string.IsNullOrEmpty(fileName) && ilOffset >= 0)
portablePdbReader.PopulateStackFrame(stackFrame, method, stackFrame.GetILOffset(), out fileName, out row, out column);
EnhancedStackFrame enhancedStackFrame = new EnhancedStackFrame(stackFrame, EnhancedStackTrace.GetMethodDisplayString(method), fileName, row, column);
enhancedStackFrameList.Add(enhancedStackFrame);
}
}
I tested version 1.4 and 1.6 and the issue was the same.
The text was updated successfully, but these errors were encountered:
I tried to use Demystifier and it wasn't working correct. I debug source code and it throws exception in PortablePdbReader.
Exception has been thrown n this part of code:
I tested version 1.4 and 1.6 and the issue was the same.
The text was updated successfully, but these errors were encountered: