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