1 write to ch
mscorlib (1)
system\globalization\timespanparse.cs (1)
1372
ch
= pos < len? str[pos]: (char) 0;
14 references to ch
mscorlib (14)
system\globalization\timespanparse.cs (14)
1398
if (
ch
== '-') {
1414
if (
ch
== '.') {
1449
while (
ch
>= '0' &&
ch
<= '9') {
1454
i = i * 10 +
ch
- '0';
1479
if (
ch
!= ':') {
1488
if (
ch
== ':') {
1491
if (
ch
!= '.') {
1497
if (
ch
== '.') {
1500
while (f > 1 &&
ch
>= '0' &&
ch
<= '9') {
1502
time += (
ch
- '0') * f;
1511
while (
ch
== ' ' ||
ch
== '\t') NextChar();