mscorlib(4.0.0.0) API with additions
DaylightTime.cs
2 
3 namespace System.Globalization
4 {
7  [ComVisible(true)]
8  public class DaylightTime
9  {
10  internal DateTime m_start;
11 
12  internal DateTime m_end;
13 
14  internal TimeSpan m_delta;
15 
18  public DateTime Start => m_start;
19 
22  public DateTime End => m_end;
23 
26  public TimeSpan Delta => m_delta;
27 
28  private DaylightTime()
29  {
30  }
31 
36  public DaylightTime(DateTime start, DateTime end, TimeSpan delta)
37  {
38  m_start = start;
39  m_end = end;
40  m_delta = delta;
41  }
42  }
43 }
Definition: __Canon.cs:3
DaylightTime(DateTime start, DateTime end, TimeSpan delta)
Initializes a new instance of the T:System.Globalization.DaylightTime class with the specified start,...
Definition: DaylightTime.cs:36
TimeSpan Delta
Gets the time interval that represents the difference between standard time and daylight saving time.
Definition: DaylightTime.cs:26
Represents an instant in time, typically expressed as a date and time of day. To browse the ....
Definition: DateTime.cs:13
DateTime End
Gets the object that represents the date and time when the daylight saving period ends.
Definition: DaylightTime.cs:22
DateTime Start
Gets the object that represents the date and time when the daylight saving period begins.
Definition: DaylightTime.cs:18
Represents a time interval.To browse the .NET Framework source code for this type,...
Definition: TimeSpan.cs:12
Specifies that the class can be serialized.
Defines the period of daylight saving time.
Definition: DaylightTime.cs:8