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

◆ WriteIf() [5/6]

static void System.Diagnostics.Debug.WriteIf ( bool condition,
string? message )
inlinestatic

Definition at line 395 of file Debug.cs.

396 {
397 if (condition)
398 {
399 Write(message);
400 }
401 }
static void Write(string? message)
Definition Debug.cs:333

References System.Diagnostics.Debug.Write().

Referenced by System.Diagnostics.Debug.WriteIf(), and System.Diagnostics.Debug.WriteIf().