4 instantiations of CollectibleKeyHashtable
System.ComponentModel.TypeConverter (4)
System\ComponentModel\ReflectTypeDescriptionProvider.cs (4)
195private static CollectibleKeyHashtable PropertyCache => LazyInitializer.EnsureInitialized(ref s_propertyCache, () => new CollectibleKeyHashtable()); 197private static CollectibleKeyHashtable EventCache => LazyInitializer.EnsureInitialized(ref s_eventCache, () => new CollectibleKeyHashtable()); 199private static CollectibleKeyHashtable AttributeCache => LazyInitializer.EnsureInitialized(ref s_attributeCache, () => new CollectibleKeyHashtable()); 201private static CollectibleKeyHashtable ExtendedPropertyCache => LazyInitializer.EnsureInitialized(ref s_extendedPropertyCache, () => new CollectibleKeyHashtable());
13 references to CollectibleKeyHashtable
System.ComponentModel.TypeConverter (13)
System\ComponentModel\ReflectTypeDescriptionProvider.cs (13)
51private static CollectibleKeyHashtable? s_propertyCache; 52private static CollectibleKeyHashtable? s_eventCache; 53private static CollectibleKeyHashtable? s_attributeCache; 54private static CollectibleKeyHashtable? s_extendedPropertyCache; 195private static CollectibleKeyHashtable PropertyCache => LazyInitializer.EnsureInitialized(ref s_propertyCache, () => new CollectibleKeyHashtable()); 197private static CollectibleKeyHashtable EventCache => LazyInitializer.EnsureInitialized(ref s_eventCache, () => new CollectibleKeyHashtable()); 199private static CollectibleKeyHashtable AttributeCache => LazyInitializer.EnsureInitialized(ref s_attributeCache, () => new CollectibleKeyHashtable()); 201private static CollectibleKeyHashtable ExtendedPropertyCache => LazyInitializer.EnsureInitialized(ref s_extendedPropertyCache, () => new CollectibleKeyHashtable()); 1098CollectibleKeyHashtable attributeCache = AttributeCache; 1126CollectibleKeyHashtable attributeCache = AttributeCache; 1154CollectibleKeyHashtable eventCache = EventCache; 1254CollectibleKeyHashtable extendedPropertyCache = ExtendedPropertyCache; 1339CollectibleKeyHashtable propertyCache = PropertyCache;