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