UnityEditor.StyleDrawInspectView.GetInstructionListName C# (CSharp) Method

GetInstructionListName() protected method

protected GetInstructionListName ( StackFrame stacktrace ) : string
stacktrace StackFrame
return string
        protected string GetInstructionListName(StackFrame[] stacktrace)
        {
            int interestingFrameIndex = this.GetInterestingFrameIndex(stacktrace);
            if (interestingFrameIndex > 0)
            {
                interestingFrameIndex--;
            }
            StackFrame frame = stacktrace[interestingFrameIndex];
            return frame.methodName;
        }

Same methods

StyleDrawInspectView::GetInstructionListName ( int index ) : string