4 writes to m_startTicks
mscorlib (4)
system\threading\timer.cs (4)
303timer.m_startTicks = resumedTicks; // re-baseline 369timer.m_startTicks = nowTicks; 463timer.m_startTicks = TickCount; 480timer.m_startTicks = 0;
5 references to m_startTicks
mscorlib (5)
system\threading\timer.cs (5)
284Contract.Assert(resumedTicks >= timer.m_startTicks); 294if(timer.m_startTicks <= pauseTicks) 295elapsed = (uint)(pauseTicks - timer.m_startTicks); 297elapsed = (uint)(resumedTicks - timer.m_startTicks); 359uint elapsed = (uint)(nowTicks - timer.m_startTicks);