You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A floating date/time means, there is no timezone defined. The floating date/time is the same in all timezones.
To discuss: Remove CTOR overloads with DateTime
The text was updated successfully, but these errors were encountered:
* `if (Math.Abs(right.TotalDays % 1) > AlmostZeroEpsilon)` is now `if ((right.Ticks % TimeSpan.TicksPerDay) != 0)`
* `DateUtil.DateTime GetSimpleDateTimeData(IDateTime dt)` returns `dt.Value`
* Move internal `DateUtil.SimpleDateTimeToMatch` as private to `RecurrenceTests`
* Move internal `DateUtil.MatchTimeZone` as private to `RecurrencePatternEvaluator`
* Create tasks in ical-org#646 and ical-org#647 for new PRs
A floating date/time means, there is no timezone defined. The floating date/time is the same in all timezones.
To discuss: Remove CTOR overloads with
DateTime
The text was updated successfully, but these errors were encountered: