6 implementations of IGenericCacheEntry
System.Private.CoreLib (6)
src\System\Array.CoreCLR.cs (1)
693internal 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)
1503internal 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)
1932where T : class, IGenericCacheEntry<T> 1934return IGenericCacheEntry<T>.GetOrCreate(this); 1938where T : class, IGenericCacheEntry<T> 1940return IGenericCacheEntry<T>.Find(this); 1944where T : class, IGenericCacheEntry<T> 1946IGenericCacheEntry<T>.Replace(this, entry);
src\System\RuntimeType.GenericCache.cs (1)
44where TCache : class, IGenericCacheEntry<TCache>