4 writes to num
mscorlib (4)
system\globalization\timespanparse.cs (4)
126num = number; 133num = number; 188tok.num = 0; 195tok.num = tok.num * 10 + ch - '0';
13 references to num
mscorlib (13)
system\globalization\timespanparse.cs (13)
140Contract.Assert(num > -1); 144if (num > maxValue) 150if (num == 0 || zeroes == 0) 154return (num >= (maxValue/(long)Math.Pow(10, zeroes-1))); 191if ((tok.num & 0xF0000000) != 0) { 195tok.num = tok.num * 10 + ch - '0'; 196if (tok.num == 0) tok.zeroes++; 197if (tok.num < 0) { 515Int64 ticks = ((Int64)days.num * 3600 * 24 + (Int64)hours.num * 3600 + (Int64)minutes.num * 60 + seconds.num) * 1000; 529long f = fraction.num;