6 implementations of IGenericCacheEntry
System.Private.CoreLib (6)
src\System\Array.CoreCLR.cs (1)
713internal sealed unsafe partial class ArrayInitializeCache : RuntimeType.IGenericCacheEntry<ArrayInitializeCache>
src\System\Enum.CoreCLR.cs (1)
103internal sealed partial class EnumInfo<TStorage> : RuntimeType.IGenericCacheEntry<EnumInfo<TStorage>>
src\System\RuntimeType.ActivatorCache.cs (1)
16internal sealed unsafe class ActivatorCache : IGenericCacheEntry<ActivatorCache>
src\System\RuntimeType.BoxCache.cs (1)
15internal sealed unsafe partial class BoxCache : IGenericCacheEntry<BoxCache>
src\System\RuntimeType.CoreCLR.cs (1)
1471internal sealed class FunctionPointerCache : IGenericCacheEntry<FunctionPointerCache>
src\System\RuntimeType.CreateUninitializedCache.CoreCLR.cs (1)
15internal sealed unsafe partial class CreateUninitializedCache : IGenericCacheEntry<CreateUninitializedCache>
7 references to IGenericCacheEntry
System.Private.CoreLib (7)
src\System\RuntimeType.CoreCLR.cs (6)
1922where T : class, IGenericCacheEntry<T> 1924return IGenericCacheEntry<T>.GetOrCreate(this); 1928where T : class, IGenericCacheEntry<T> 1930return IGenericCacheEntry<T>.Find(this); 1934where T : class, IGenericCacheEntry<T> 1936IGenericCacheEntry<T>.Replace(this, entry);
src\System\RuntimeType.GenericCache.cs (1)
44where TCache : class, IGenericCacheEntry<TCache>