HackedBrain.ScriptCs.ClrMd.ClrMdPack.DumpThreadStackTrace C# (CSharp) Method

DumpThreadStackTrace() private method

private DumpThreadStackTrace ( Microsoft.Diagnostics.Runtime.ClrThread thread ) : void
thread Microsoft.Diagnostics.Runtime.ClrThread
return void
		private void DumpThreadStackTrace(ClrThread thread)
		{
			foreach(ClrStackFrame frame in thread.StackTrace)
			{
				this.outputWriter.WriteLine("  {0,12:X} {1,12:X} {2}", frame.InstructionPointer, frame.StackPointer, frame.DisplayString);
			}
		}
	}