BytesRoad.Diag.NSTrace.Indent C# (CSharp) Method

Indent() private method

private Indent ( ) : void
return void
        public static void Indent()
        {
            if(NSTraceOptions.UseSystemTrace)
                Trace.Indent();

            foreach(TraceListener tl in Listeners)
                tl.IndentLevel = tl.IndentLevel + 1;
        }