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

◆ TrailingZeros()

static bool System.Globalization.FormatProvider.Number.TrailingZeros ( ReadOnlySpan< char > s,
int index )
inlinestaticprivate

Definition at line 334 of file FormatProvider.cs.

335 {
336 for (int i = index; i < s.Length; i++)
337 {
338 if (s[i] != 0)
339 {
340 return false;
341 }
342 }
343 return true;
344 }

References System.index, and System.s.

Referenced by System.Globalization.FormatProvider.Number.TryStringToNumber().