3 instantiations of ConcurrentDictionary
MSBuildTaskHost (3)
TypeLoader.cs (3)
22
private static readonly ConcurrentDictionary<TypeFilter, ConcurrentDictionary<string, TypeCache>> s_cacheOfLoadedTypesByFilter =
new
();
141
var loadInfoToType = cache.GetOrAdd(_isDesiredType, _ =>
new
(StringComparer.OrdinalIgnoreCase));
202
_typeNameToType = new
ConcurrentDictionary
<string, Type?>(StringComparer.OrdinalIgnoreCase);
6 references to ConcurrentDictionary
MSBuildTaskHost (6)
TypeLoader.cs (6)
22
private static readonly
ConcurrentDictionary
<TypeFilter,
ConcurrentDictionary
<string, TypeCache>> s_cacheOfLoadedTypesByFilter = new();
134
ConcurrentDictionary
<TypeFilter,
ConcurrentDictionary
<string, TypeCache>> cache,
141
var
loadInfoToType = cache.GetOrAdd(_isDesiredType, _ => new(StringComparer.OrdinalIgnoreCase));
176
private readonly
ConcurrentDictionary
<string, Type?> _typeNameToType;