5 references to TicksPerDay
System.Data.Common (5)
System\Data\SQLTypes\SQLDateTime.cs (5)
48
private const int MaxTime =
TicksPerDay
- 1; // = 25919999, 11:59:59:997PM
177
int time = (int)((dblVal - day) *
TicksPerDay
);
183
time +=
TicksPerDay
;
185
else if (time >=
TicksPerDay
)
196
time -=
TicksPerDay
;