UnityEditor.BaseInspectView.DrawStackFrameList C# (CSharp) Method

DrawStackFrameList() protected method

protected DrawStackFrameList ( StackFrame stackframes ) : void
stackframes StackFrame
return void
        protected void DrawStackFrameList(StackFrame[] stackframes)
        {
            if (stackframes != null)
            {
                foreach (StackFrame frame in stackframes)
                {
                    if (!string.IsNullOrEmpty(frame.sourceFile))
                    {
                        GUILayout.Label(string.Format("{0} [{1}:{2}]", frame.signature, frame.sourceFile, frame.lineNumber), GUIViewDebuggerWindow.s_Styles.stackframeStyle, new GUILayoutOption[0]);
                    }
                }
            }
        }