2 writes to _readOnlySystemTimeZones
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\TimeZoneInfo.cs (2)
925
cachedData.
_readOnlySystemTimeZones
= cachedData._readOnlyUnsortedSystemTimeZones = new ReadOnlyCollection<TimeZoneInfo>(array);
934
cachedData.
_readOnlySystemTimeZones
= cachedData._readOnlyUnsortedSystemTimeZones = ReadOnlyCollection<TimeZoneInfo>.Empty;
2 references to _readOnlySystemTimeZones
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\TimeZoneInfo.cs (2)
899
if ((skipSorting ? cachedData._readOnlyUnsortedSystemTimeZones : cachedData.
_readOnlySystemTimeZones
) is null)
939
return skipSorting ? cachedData._readOnlyUnsortedSystemTimeZones! : cachedData.
_readOnlySystemTimeZones
!;