UnityEditor.StyleDrawInspectView.ShowInstructionInExternalEditor C# (CSharp) Method

ShowInstructionInExternalEditor() private method

private ShowInstructionInExternalEditor ( StackFrame frames ) : void
frames StackFrame
return void
        private void ShowInstructionInExternalEditor(StackFrame[] frames)
        {
            int interestingFrameIndex = this.GetInterestingFrameIndex(frames);
            StackFrame frame = frames[interestingFrameIndex];
            InternalEditorUtility.OpenFileAtLineExternal(frame.sourceFile, (int) frame.lineNumber);
        }