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)
220
return _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)
172
internal struct LazyDictionaryContext : IEquatable<
LazyDictionaryContext
>
179
if (!(obj is
LazyDictionaryContext
))
181
return Equals((
LazyDictionaryContext
)obj);
184
public bool Equals(
LazyDictionaryContext
other)
196
private LowLevelDictionary<
LazyDictionaryContext
, IntPtr> _lazyGenericDictionaries = new LowLevelDictionary<
LazyDictionaryContext
, IntPtr>();