1 write to _ch
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Globalization\TimeSpanParse.cs (1)
1485
_ch
= (uint)pos < (uint)str.Length ?
12 references to _ch
System.Private.CoreLib (12)
src\libraries\System.Private.CoreLib\src\System\Globalization\TimeSpanParse.cs (12)
1506
if (
_ch
== '-')
1529
if (
_ch
== '.')
1572
while (char.IsAsciiDigit(
_ch
))
1579
i = i * 10 +
_ch
- '0';
1611
if (
_ch
!= ':')
1625
if (
_ch
== ':')
1630
if (
_ch
!= '.')
1639
if (
_ch
== '.')
1643
while (f > 1 && char.IsAsciiDigit(
_ch
))
1646
time += (
_ch
- '0') * f;
1657
while (
_ch
== ' ' ||
_ch
== '\t') NextChar();