3 instantiations of DelayedType
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\TypeMapLazyDictionary.cs (3)
341_lazyData.Add(key, new DelayedType(targetType, fallbackAssembly)); 418Source = new DelayedType(sourceTypeName, fallbackAssembly), 419Proxy = new DelayedType(proxyTypeName, fallbackAssembly)
4 references to DelayedType
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\TypeMapLazyDictionary.cs (4)
320private readonly Dictionary<string, DelayedType> _lazyData = new(); 324if (!_lazyData.TryGetValue(key, out DelayedType? value)) 356public required DelayedType Source { get; init; } 357public required DelayedType Proxy { get; init; }