Click or drag to resize

InternReclaimableEventArgsCleanup Property

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

Gets/sets a value indicating whether the collection should be cleaned up after the event handler completes. Default is false.

Namespace:  Condensed
Assembly:  Condensed (in Condensed.dll) Version: 0.1.0.0 (0.1.0.0)
Syntax
public bool Cleanup { get; set; }

Property Value

Type: Boolean
Remarks

Set the Cleanup property to true in your event handler to have the collection perform a cleanup operation when the event handler completes.

Cleanups are expensive and typically should not be performed every time the event is raised; consider cleaning up only when the InternPoolCount is significantly larger than the UniqueCount.

See Also