6 references to TicksPerSecond
mscorlib (6)
system\globalization\calendar.cs (2)
41internal const long TicksPerMinute = TicksPerSecond * 60; 486return ((int)((time.Ticks / TicksPerSecond) % 60));
system\globalization\datetimeformat.cs (1)
483long fraction = (dateTime.Ticks % Calendar.TicksPerSecond);
system\globalization\datetimeparse.cs (3)
2529time = time.AddTicks((long)Math.Round(raw.fraction * Calendar.TicksPerSecond)); 2837time = time.AddTicks((long)Math.Round(partSecond * Calendar.TicksPerSecond)); 4152result.parsedDate = result.parsedDate.AddTicks((long)Math.Round(result.fraction * Calendar.TicksPerSecond));