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

◆ GetByte()

byte System.Text.Json.JsonElement.GetByte ( )
inline

Definition at line 303 of file JsonElement.cs.

304 {
305 if (TryGetByte(out var value))
306 {
307 return value;
308 }
309 throw new FormatException();
310 }
bool TryGetByte(out byte value)

References System.Text.Json.JsonElement.TryGetByte(), and System.value.