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)
1506if (_ch == '-') 1529if (_ch == '.') 1572while (char.IsAsciiDigit(_ch)) 1579i = i * 10 + _ch - '0'; 1611if (_ch != ':') 1625if (_ch == ':') 1630if (_ch != '.') 1639if (_ch == '.') 1643while (f > 1 && char.IsAsciiDigit(_ch)) 1646time += (_ch - '0') * f; 1657while (_ch == ' ' || _ch == '\t') NextChar();