A Dictionary<(Of <(TKey, TValue>)>) that maintains insertion order using an internal LinkedList<(Of <(T>)>) with KeyValuePair<(Of <(TKey, TValue>)>) elements.

Namespace:  Endeca.Web.Url.Seo.Utility
Assembly:  Endeca.Web.Url.Seo (in Endeca.Web.Url.Seo.dll) Version: 2.1.1.0 (2.1.1.0)

Syntax

C#
public class LinkedDictionary<T, U> : IDictionary<T, U>, 
	ICollection<KeyValuePair<T, U>>, IEnumerable<KeyValuePair<T, U>>, 
	IEnumerable
Visual Basic (Declaration)
Public Class LinkedDictionary(Of T, U) _
	Implements IDictionary(Of T, U), ICollection(Of KeyValuePair(Of T, U)),  _
	IEnumerable(Of KeyValuePair(Of T, U)), IEnumerable
Visual C++
generic<typename T, typename U>
public ref class LinkedDictionary : IDictionary<T, U>, 
	ICollection<KeyValuePair<T, U>>, IEnumerable<KeyValuePair<T, U>>, 
	IEnumerable

Type Parameters

T
The type of the Dictionary's Keys
U
The type of the Dictionary's Values

Inheritance Hierarchy

System..::.Object
  Endeca.Web.Url.Seo.Utility..::.LinkedDictionary<(Of <(T, U>)>)

See Also