1 write to stringTab
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\ManifestBuilder.cs (1)
61stringTab = new Dictionary<string, string>();
7 references to stringTab
System.Private.CoreLib (7)
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\ManifestBuilder.cs (7)
289if (stringTab.TryGetValue(prefixedEventName, out string? msg)) 292stringTab[prefixedEventName] = msg; 537var sortedStrings = new string[stringTab.Keys.Count]; 538stringTab.Keys.CopyTo(sortedStrings, 0); 582if (stringTab.TryGetValue(key, out string? prevValue) && !prevValue.Equals(value)) 588stringTab[key] = value; 607stringTab.TryGetValue(key, out value);