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

◆ GetDecimalWithQuotes()

decimal System.Text.Json.Utf8JsonReader.GetDecimalWithQuotes ( )
inlinepackage

Definition at line 4335 of file Utf8JsonReader.cs.

4336 {
4337 ReadOnlySpan<byte> unescapedSpan = GetUnescapedSpan();
4339 {
4340 throw ThrowHelper.GetFormatException(NumericType.Decimal);
4341 }
4342 return value;
4343 }
bool TryGetDecimalCore(out decimal value, ReadOnlySpan< byte > span)
ReadOnlySpan< byte > GetUnescapedSpan()

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