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

◆ ValueEquals() [3/3]

bool System.Text.Json.JsonElement.ValueEquals ( string? text)
inline

Definition at line 522 of file JsonElement.cs.

523 {
524 if (TokenType == JsonTokenType.Null)
525 {
526 return text == null;
527 }
528 return TextEqualsHelper(text.AsSpan(), isPropertyName: false);
529 }
bool TextEqualsHelper(ReadOnlySpan< byte > utf8Text, bool isPropertyName, bool shouldUnescape)

References System.text, and System.Text.Json.JsonElement.TextEqualsHelper().