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

Ordered dictionary which allws duplicate entries

Namespace: Tools.CollectionsT.GenericT
Assembly: Tools (in Tools.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
public class DuplicateDictionary<TKey, TValue> : IDictionary<TKey, TValue>, 
	ICloneable
Visual Basic
Public Class DuplicateDictionary(Of TKey, TValue) _
	Implements IDictionary(Of TKey, TValue), ICloneable
Visual C++
generic<typename TKey, typename TValue>
public ref class DuplicateDictionary : IDictionary<TKey, TValue>, 
	ICloneable
F#
type DuplicateDictionary<'TKey, 'TValue> =  
    class
        interface IDictionary<'TKey, 'TValue>
        interface ICloneable
    end
JScript
JScript does not support generic types or methods.

Type Parameters

TKey
Type of dictionary key
TValue
Type of dictionary value

Remarks

This dictionary allows duplicate keys and is kept ordered.

Inheritance Hierarchy

System..::..Object
  Tools.CollectionsT.GenericT..::..DuplicateDictionary<(Of <(<'TKey, TValue>)>)>
    Tools.CollectionsT.SpecializedT..::..TransliterationDictionary

See Also

Collapse/expand Version History

1.5.3

  • This class is new in version 1.5.3