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

◆ SkipWhiteSpaceCurrent()

bool System.__DTString.SkipWhiteSpaceCurrent ( )
inlinepackage

Definition at line 340 of file __DTString.cs.

341 {
342 if (Index >= Length)
343 {
344 return false;
345 }
346 if (!char.IsWhiteSpace(m_current))
347 {
348 return true;
349 }
350 while (++Index < Length)
351 {
353 if (!char.IsWhiteSpace(m_current))
354 {
355 return true;
356 }
357 }
358 return false;
359 }
ReadOnlySpan< char > Value
Definition __DTString.cs:8

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

Referenced by System.__DTString.GetSeparatorToken().