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

◆ DebuggerDisplay

string System.Text.Json.JsonProperty.DebuggerDisplay
getprivate

Definition at line 14 of file JsonProperty.cs.

15 {
16 get
17 {
18 if (Value.ValueKind != 0)
19 {
20 return "\"" + ToString() + "\"";
21 }
22 return "<Undefined>";
23 }
24 }