4 writes to m_id
mscorlib (4)
system\timezoneinfo.cs (4)
1089m_id = c_localId; // the ID must contain at least 1 character - initialize m_id to "Local" 1092m_id = zone.StandardName; 1128m_id = id; 1258m_id = (String)info.GetValue("Id", typeof(String));
12 references to m_id
mscorlib (12)
system\timezoneinfo.cs (12)
135timeZone.m_id, 281return m_id; 872return (other != null && String.Compare(this.m_id, other.m_id, StringComparison.OrdinalIgnoreCase) == 0 && HasSameRules(other)); 903return m_id.ToUpper(CultureInfo.InvariantCulture).GetHashCode(); 1106ValidateTimeZoneInfo(m_id, m_baseUtcOffset, m_adjustmentRules, out m_supportsDaylightSavingTime); 1221ValidateTimeZoneInfo(m_id, m_baseUtcOffset, m_adjustmentRules, out adjustmentRulesSupportDst); 1243info.AddValue("Id", m_id); 2866value = CreateCustomTimeZone(match.m_id, match.m_baseUtcOffset, match.m_displayName, match.m_standardDisplayName); 2869value = new TimeZoneInfo(match.m_id, match.m_baseUtcOffset, match.m_displayName, match.m_standardDisplayName, 2888value = CreateCustomTimeZone(match.m_id, match.m_baseUtcOffset, match.m_displayName, match.m_standardDisplayName); 2891value = new TimeZoneInfo(match.m_id, match.m_baseUtcOffset, match.m_displayName, match.m_standardDisplayName,