Mono.Debugger.Frontend.ObjectFormatter.CheckLineWrap C# (CSharp) 메소드

CheckLineWrap() 보호된 메소드

protected CheckLineWrap ( ) : void
리턴 void
        protected void CheckLineWrap()
        {
            if (!WrapLines)
                return;

            if (pos < Columns) {
                last = sb.Length;
                return;
            }

            string wrap = "\n" + new String (' ', indent_level);

            if (last < 0)
                sb.Append (wrap);
            else
                sb.Insert (last, wrap);

            last = -1;
            pos = 0;
        }