2 overrides of TryGetOrLoadType
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\TypeMapLazyDictionary.cs (2)
322protected override bool TryGetOrLoadType(string key, [NotNullWhen(true)] out Type? type) 374protected override bool TryGetOrLoadType(Type key, [NotNullWhen(true)] out Type? type)
2 references to TryGetOrLoadType
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\TypeMapLazyDictionary.cs (2)
252if (!TryGetOrLoadType(key, out Type? type)) 261public bool TryGetValue(TKey key, [MaybeNullWhen(false)] out Type value) => TryGetOrLoadType(key, out value);