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

◆ Current [1/2]

JsonProperty System.Text.Json.JsonElement.ObjectEnumerator.Current
get

Implements System.Collections.Generic.IEnumerator< out T >.

Definition at line 96 of file JsonElement.cs.

97 {
98 get
99 {
100 if (_curIdx < 0)
101 {
102 return default(JsonProperty);
103 }
104 return new JsonProperty(new JsonElement(_target._parent, _curIdx));
105 }
106 }
readonly JsonDocument _parent
JsonElement(JsonDocument parent, int idx)