Class ObservableHashSet<T>
An observable collection that ensures all items are unique, similar to a HashSet but with change notifications.
Inheritance
Namespace: Telerik.Collections.Generic
Assembly: Telerik.WinControls.dll
Syntax
public class ObservableHashSet<T> : ObservableCollection<T>
Type Parameters
T
The type of elements in the set. |
Remarks
This collection prevents duplicate items from being added while maintaining observable collection behavior with change notifications. Attempts to add duplicate items are silently ignored.
Constructors
ObservableHashSet()
Declaration
public ObservableHashSet()
Methods
InsertItem(Int32, T)
Declaration
protected override void InsertItem(int index, T item)
Parameters
System.Int32
index
|
T
item
|
SetItem(Int32, T)
Declaration
protected override void SetItem(int index, T item)
Parameters
System.Int32
index
|
T
item
|