1 write to stringTab
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\EventSource.cs (1)
5339stringTab = new Dictionary<string, string>();
7 references to stringTab
System.Private.CoreLib (7)
src\libraries\System.Private.CoreLib\src\System\Diagnostics\Tracing\EventSource.cs (7)
5567if (stringTab.TryGetValue(prefixedEventName, out string? msg)) 5570stringTab[prefixedEventName] = msg; 5815var sortedStrings = new string[stringTab.Keys.Count]; 5816stringTab.Keys.CopyTo(sortedStrings, 0); 5860if (stringTab.TryGetValue(key, out string? prevValue) && !prevValue.Equals(value)) 5866stringTab[key] = value; 5885stringTab.TryGetValue(key, out value);