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

◆ GetNextDigit()

bool System.__DTString.GetNextDigit ( )
inlinepackage

Definition at line 308 of file __DTString.cs.

309 {
310 if (++Index < Length)
311 {
312 return DateTimeParse.IsDigit(Value[Index]);
313 }
314 return false;
315 }
ReadOnlySpan< char > Value
Definition __DTString.cs:8

References System.DateTimeParse.IsDigit(), System.__DTString.Length, and System.__DTString.Value.