Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ IndentLevel

int System.Diagnostics.Debug.IndentLevel
staticgetset

Definition at line 188 of file Debug.cs.

189 {
190 get
191 {
192 return t_indentLevel;
193 }
194 set
195 {
196 t_indentLevel = ((value >= 0) ? value : 0);
197 s_provider.OnIndentLevelChanged(t_indentLevel);
198 }
199 }
static int t_indentLevel
Definition Debug.cs:173
static volatile DebugProvider s_provider
Definition Debug.cs:170

Referenced by System.Diagnostics.DebugProvider.GetIndentString(), System.Diagnostics.TraceInternal.Indent(), System.Diagnostics.Debug.Indent(), System.Diagnostics.TraceInternal.Unindent(), and System.Diagnostics.Debug.Unindent().