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

◆ Root

JsonNode System.Text.Json.Nodes.JsonNode.Root
getinherited

Definition at line 37 of file JsonNode.cs.

38 {
39 get
40 {
41 JsonNode parent = Parent;
42 if (parent == null)
43 {
44 return this;
45 }
46 while (parent.Parent != null)
47 {
48 parent = parent.Parent;
49 }
50 return parent;
51 }
52 }
JsonNode(JsonNodeOptions? options=null)
Definition JsonNode.cs:78