ListDictionary<TKey, TValue> Class

A dictionary of lists.

Namespace:  Microsoft.Practices.Prism
Assembly:  Microsoft.Practices.Prism (in Microsoft.Practices.Prism.dll)

Syntax

public sealed class ListDictionary<TKey, TValue> : IDictionary<TKey, IList<TValue>>, 
    ICollection<KeyValuePair<TKey, IList<TValue>>>, IEnumerable<KeyValuePair<TKey, IList<TValue>>>, 
    IEnumerable
'Declaration
Public NotInheritable Class ListDictionary(Of TKey, TValue) _
    Implements IDictionary(Of TKey, IList(Of TValue)),  _
    ICollection(Of KeyValuePair(Of TKey, IList(Of TValue))),  _
    IEnumerable(Of KeyValuePair(Of TKey, IList(Of TValue))),  _
    IEnumerable

Type Parameters

  • TKey
    The key to use for lists.
  • TValue
    The type of the value held by lists.

Inheritance Hierarchy

System.Object
  Microsoft.Practices.Prism.ListDictionary<TKey, TValue>

See Also

ListDictionary<TKey, TValue> Members

Microsoft.Practices.Prism Namespace