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

◆ WriteLine() [5/5]

static void System.Diagnostics.Debug.WriteLine ( string? message,
string? category )
inlinestatic

Definition at line 357 of file Debug.cs.

358 {
359 if (category == null)
360 {
361 WriteLine(message);
362 }
363 else
364 {
365 WriteLine(category + ": " + message);
366 }
367 }
static void WriteLine(string? message)
Definition Debug.cs:327

References System.Diagnostics.Debug.WriteLine().