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

◆ SkipWhiteSpaces()

void System.__DTString.SkipWhiteSpaces ( )
inlinepackage

Definition at line 327 of file __DTString.cs.

328 {
329 while (Index + 1 < Length)
330 {
331 char c = Value[Index + 1];
332 if (!char.IsWhiteSpace(c))
333 {
334 break;
335 }
336 Index++;
337 }
338 }
ReadOnlySpan< char > Value
Definition __DTString.cs:8

References System.__DTString.Length, and System.__DTString.Value.