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

◆ IsPrintable()

static bool System.Text.Json.ThrowHelper.IsPrintable ( byte value)
inlinestaticprivate

Definition at line 265 of file ThrowHelper.cs.

266 {
267 if (value >= 32)
268 {
269 return value < 127;
270 }
271 return false;
272 }

References System.value.

Referenced by System.Text.Json.ThrowHelper.GetPrintableString(), and System.Text.Json.ThrowHelper.ThrowArgumentException_InvalidUTF8().