DotNetDupe 4.0.6
C++17/20 Implementation of the .NET Base Class Library (BCL)
Loading...
Searching...
No Matches
DaylightTime.cpp
Go to the documentation of this file.
1#include "pch.h"
3
4namespace DotNetDupe {
5 namespace System {
7 : _start(start), _end(end), _delta(delta) {
9 }
10
13 return _start;
14 }
15
18 return _end;
19 }
20
23 return _delta;
24 }
25 }
26}
27
Defines the period of daylight saving time.
Represents a point in time, typically expressed as a date and time of day, relative to Coordinated Un...
TimeSpan GetDelta() const
Gets the time interval that represents the difference between standard time and daylight saving time.
DaylightTime(DateTimeOffset start, DateTimeOffset end, TimeSpan delta)
Initializes a new instance of the DaylightTime class with specified start, end, and time delta.
DateTimeOffset GetEnd() const
Gets the date and time when the daylight saving period ends.
DateTimeOffset GetStart() const
Gets the date and time when the daylight saving period begins.
Represents a time interval (duration of time or elapsed time) measured as a positive or negative numb...
Definition TimeSpan.h:20