3 writes to _readOnlyUnsortedSystemTimeZones
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\TimeZoneInfo.cs (3)
792
cachedData._readOnlySystemTimeZones = cachedData.
_readOnlyUnsortedSystemTimeZones
= new ReadOnlyCollection<TimeZoneInfo>(array);
796
cachedData.
_readOnlyUnsortedSystemTimeZones
= new ReadOnlyCollection<TimeZoneInfo>(array);
801
cachedData._readOnlySystemTimeZones = cachedData.
_readOnlyUnsortedSystemTimeZones
= ReadOnlyCollection<TimeZoneInfo>.Empty;
2 references to _readOnlyUnsortedSystemTimeZones
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\TimeZoneInfo.cs (2)
769
if ((skipSorting ? cachedData.
_readOnlyUnsortedSystemTimeZones
: cachedData._readOnlySystemTimeZones) is null)
806
return skipSorting ? cachedData.
_readOnlyUnsortedSystemTimeZones
! : cachedData._readOnlySystemTimeZones!;