3 writes to _standardDisplayName
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\TimeZoneInfo.cs (3)
183Interlocked.CompareExchange(ref _standardDisplayName, PopulateStandardDisplayName(), null); 874_standardDisplayName = standardDisplayName; 1022_standardDisplayName = (string?)info.GetValue("StandardName", typeof(string)); // Do not rename (binary serialization)
8 references to _standardDisplayName
System.Private.CoreLib (8)
src\libraries\System.Private.CoreLib\src\System\TimeZoneInfo.cs (8)
182if (_standardDisplayName == null) 185return _standardDisplayName ?? string.Empty; 1009info.AddValue("StandardName", _standardDisplayName); // Do not rename (binary serialization) 1153zone = new TimeZoneInfo(id, value._baseUtcOffset, value._displayName, value._standardDisplayName, 1173zone = new TimeZoneInfo(id, value._baseUtcOffset, value._displayName, value._standardDisplayName, 1215value = CreateCustomTimeZone(value._id, value._baseUtcOffset, value._displayName, value._standardDisplayName); 1235value = CreateCustomTimeZone(value._id, value._baseUtcOffset, value._displayName, value._standardDisplayName); 1287value = CreateCustomTimeZone(value._id, value._baseUtcOffset, value._displayName, value._standardDisplayName);