2 instantiations of LazyDictionaryContext
System.Private.TypeLoader (2)
Internal\Runtime\TypeLoader\TypeLoaderEnvironment.ConstructedGenericsRegistration.cs (1)
131_lazyGenericDictionaries.Add(new LazyDictionaryContext { _context = context, _signature = signature }, dictionary);
Internal\Runtime\TypeLoader\TypeLoaderEnvironment.ConstructedGenericTypesLookup.cs (1)
220return _lazyGenericDictionaries.TryGetValue(new LazyDictionaryContext { _context = context, _signature = signature }, out dictionary);
6 references to LazyDictionaryContext
System.Private.TypeLoader (6)
Internal\Runtime\TypeLoader\TypeLoaderEnvironment.ConstructedGenericTypesLookup.cs (6)
172internal struct LazyDictionaryContext : IEquatable<LazyDictionaryContext> 179if (!(obj is LazyDictionaryContext)) 181return Equals((LazyDictionaryContext)obj); 184public bool Equals(LazyDictionaryContext other) 196private LowLevelDictionary<LazyDictionaryContext, IntPtr> _lazyGenericDictionaries = new LowLevelDictionary<LazyDictionaryContext, IntPtr>();