// 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)); }
public AssemblyLine[] Disassemble(int frameIndex, int firstLine, int count) { return(MtaThread.Run(() => backtrace.Disassemble(frameIndex, firstLine, count))); }