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

◆ GetDouble()

double System.Text.Json.Utf8JsonReader.GetDouble ( )
inline

Definition at line 4293 of file Utf8JsonReader.cs.

4294 {
4295 if (!TryGetDouble(out var value))
4296 {
4297 throw ThrowHelper.GetFormatException(NumericType.Double);
4298 }
4299 return value;
4300 }
bool TryGetDouble(out double value)

References System.Text.Json.Dictionary, System.Text.Json.ThrowHelper.GetFormatException(), System.Text.Json.Utf8JsonReader.TryGetDouble(), and System.value.