1 write to DaylightDate
mscorlib (1)
microsoft\win32\win32native.cs (1)
313DaylightDate = tzi.DaylightDate;
30 references to DaylightDate
mscorlib (30)
microsoft\win32\win32native.cs (8)
359DaylightDate.Year = BitConverter.ToInt16(bytes, 28); 360DaylightDate.Month = BitConverter.ToInt16(bytes, 30); 361DaylightDate.DayOfWeek = BitConverter.ToInt16(bytes, 32); 362DaylightDate.Day = BitConverter.ToInt16(bytes, 34); 363DaylightDate.Hour = BitConverter.ToInt16(bytes, 36); 364DaylightDate.Minute = BitConverter.ToInt16(bytes, 38); 365DaylightDate.Second = BitConverter.ToInt16(bytes, 40); 366DaylightDate.Milliseconds = BitConverter.ToInt16(bytes, 42);
system\timezoneinfo.cs (22)
2144if (timeZoneInformation.DaylightDate.Year == 0) { 2149timeZoneInformation.DaylightDate.Hour, 2150timeZoneInformation.DaylightDate.Minute, 2151timeZoneInformation.DaylightDate.Second, 2152timeZoneInformation.DaylightDate.Milliseconds), 2153timeZoneInformation.DaylightDate.Month, 2154timeZoneInformation.DaylightDate.Day, /* Week 1-5 */ 2155(DayOfWeek) timeZoneInformation.DaylightDate.DayOfWeek); 2162timeZoneInformation.DaylightDate.Hour, 2163timeZoneInformation.DaylightDate.Minute, 2164timeZoneInformation.DaylightDate.Second, 2165timeZoneInformation.DaylightDate.Milliseconds), 2166timeZoneInformation.DaylightDate.Month, 2167timeZoneInformation.DaylightDate.Day); 2523&& timeZone.DaylightDate.Year == registryTimeZoneInfo.DaylightDate.Year 2524&& timeZone.DaylightDate.Month == registryTimeZoneInfo.DaylightDate.Month 2525&& timeZone.DaylightDate.DayOfWeek == registryTimeZoneInfo.DaylightDate.DayOfWeek 2526&& timeZone.DaylightDate.Day == registryTimeZoneInfo.DaylightDate.Day 2527&& timeZone.DaylightDate.Hour == registryTimeZoneInfo.DaylightDate.Hour 2528&& timeZone.DaylightDate.Minute == registryTimeZoneInfo.DaylightDate.Minute 2529&& timeZone.DaylightDate.Second == registryTimeZoneInfo.DaylightDate.Second 2530&& timeZone.DaylightDate.Milliseconds == registryTimeZoneInfo.DaylightDate.Milliseconds);