class KeyedCollection<TKey,TItem>

in global :: System . Collections . ObjectModel

Provides the abstract base class for a collection whose keys are embedded in the values.

  • TKey The type of keys in the collection.
  • TItem The type of items in the collection.

public IEqualityComparer<TKey> Comparer { get; }

Gets the generic equality comparer that is used to determine equality of keys in the collection.

  • Returns The implementation of the generic interface that is used to determine equality of keys in the collection.

public string ToString( )

😔 No documentation found.

public Type GetType( )

😔 No documentation found.

public void RemoveAt( int index )

😔 No documentation found.

public bool Remove( TItem item )

😔 No documentation found.

public void Insert( int index, TItem item )

😔 No documentation found.

public int IndexOf( TItem item )

😔 No documentation found.

public IEnumerator<TItem> GetEnumerator( )

😔 No documentation found.

public bool Contains( TItem item )

😔 No documentation found.

public int GetHashCode( )

😔 No documentation found.

public void Clear( )

😔 No documentation found.

public void Add( TItem item )

😔 No documentation found.

public TItem Item { get; set; }

😔 No documentation found.

public int Count { get; }

😔 No documentation found.

public bool Remove( TKey key )

😔 No documentation found.

public bool TryGetValue( TKey key, ref TItem item )

😔 No documentation found.

public bool Contains( TKey key )

😔 No documentation found.

public TItem Item { get; }

😔 No documentation found.

public bool Equals( object obj )

😔 No documentation found.

public void CopyTo( TItem[] array, int index )

😔 No documentation found.