5 references to TicksPerSecond
System.Data.Common (5)
System\Data\SQLTypes\SQLDateTime.cs (5)
36private const int TicksPerMinute = TicksPerSecond * (int)TimeSpan.SecondsPerMinute; 37private const int TicksPerHour = TicksPerSecond * (int)TimeSpan.SecondsPerHour; 38private const int TicksPerDay = TicksPerSecond * (int)TimeSpan.SecondsPerDay; 127int timeticks = hour * TicksPerHour + minute * TicksPerMinute + second * TicksPerSecond + 689public static readonly int SQLTicksPerSecond = TicksPerSecond;