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

◆ Write() [4/4]

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

Definition at line 376 of file Debug.cs.

377 {
378 if (category == null)
379 {
380 Write(message);
381 }
382 else
383 {
384 Write(category + ": " + message);
385 }
386 }
static void Write(string? message)
Definition Debug.cs:333

References System.Diagnostics.Debug.Write().