Click or drag to resize

CondensedCollectionTInternPoolCount Property

[This is preliminary documentation and is subject to change.]

Gets count of values held internally in the collection's intern pool of unique values, or -1 if the collection has cutover and is no longer performing deduplication.

Namespace:  Condensed
Assembly:  Condensed (in Condensed.dll) Version: 0.1.0.0 (0.1.0.0)
Syntax
public int InternPoolCount { get; }

Property Value

Type: Int32
Remarks

The CondensedCollectionT does not automatically reclaim values from the intern pool. An intern pool that is significantly larger then the UniqueCount indicates that many values being held in the pool are no longer being used by the CondensedCollection. Call Cleanup as needed to reclaim memory from the intern pool or subscribe to the InternedValueReclaimable event.

See Also