2.2.3.10.3 DaylightTime

The syntax below follows the .NET Remoting Description Notation, as specified in [MS-NRTP], section 2.2.5.

DaylightTime is a Class, the Library name of which is "mscorlib". It is used to contain the information about daylight saving time.

 namespace System.Globalization
 {
   class DaylightTime
   {
     DateTime           m_start;
     DateTime           m_end;
     TimeSpan           m_delta;
   }
 }

m_start: The start date of a daylight saving period.

m_end: The end date of a daylight saving period.

m_delta: The delta to standard offset.