TimeComparisonGranularity Enum
Namespace: Rebex
Assembly: Rebex.Common.dll (version 7.0.9083)
Specifies granularity for time comparisons.
Syntax
public enum TimeComparisonGranularity
Fields
Name | Description |
---|---|
Days | The smallest time unit is one day (time component is ignored). E.g. 2012-12-12 11:33:55.999 is rounded to 2012-12-12 00:00:00.000. |
None | Time is taken as is. |
Seconds | The smallest time unit is one second (milliseconds are ignored). E.g. 11:33:55.999 is rounded to 11:33:55.000. |
TwoSeconds | The smallest time unit is two-second. So odd seconds are rounded to lower even value (milliseconds are ignored). E.g. 11:33:55.999 is rounded to 11:33:54.000. |