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