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

◆ WriteToDebugger()

static void System.Diagnostics.DebugProvider.WriteToDebugger ( string message)
inlinestaticprivateinherited

Definition at line 147 of file DebugProvider.cs.

148 {
149 if (Debugger.IsLogging())
150 {
151 Debugger.Log(0, null, message);
152 }
153 else
154 {
155 Interop.Kernel32.OutputDebugString(message ?? string.Empty);
156 }
157 }
static void OutputDebugString(string message)

References System.Diagnostics.Debugger.IsLogging(), System.Diagnostics.Debugger.Log(), and Interop.Kernel32.OutputDebugString().

Referenced by System.Diagnostics.DebugProvider.WriteCore().