Example #1
0
 // Returns disassembled code for this stack frame.
 // firstLine is the relative code line. It can be negative.
 public AssemblyLine[] Disassemble(int firstLine, int count)
 {
     return(sourceBacktrace.Disassemble(index, firstLine, count));
 }
Example #2
0
 public AssemblyLine[] Disassemble(int frameIndex, int firstLine, int count)
 {
     return(MtaThread.Run(() => backtrace.Disassemble(frameIndex, firstLine, count)));
 }