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

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

Syntax

C#
public sealed class ReadOnlyDictionary<TKey, TValue> : IDictionary<TKey, TValue>, 
	IReadOnlyIndexableEnumerable<TValue, TKey>, IReadOnlyIndexableWithCount<TValue, TKey>
Visual Basic (Declaration)
Public NotInheritable Class ReadOnlyDictionary(Of TKey, TValue) _
	Implements IDictionary(Of TKey, TValue), IReadOnlyIndexableEnumerable(Of TValue, TKey),  _
	IReadOnlyIndexableWithCount(Of TValue, TKey)
Visual C++
generic<typename TKey, typename TValue>
public ref class ReadOnlyDictionary sealed : IDictionary<TKey, TValue>, 
	IReadOnlyIndexableEnumerable<TValue, TKey>, IReadOnlyIndexableWithCount<TValue, TKey>
J#
J# supports the use of generic APIs, but not the declaration of new ones.
JScript
JScript does not support generic types or methods.

Type Parameters

TKey
Type of dictionary keys
TValue
Type of dictionary items

Remarks

Inheritance Hierarchy

System..::.Object
  Tools.CollectionsT.GenericT..::.ReadOnlyDictionary<(Of <(TKey, TValue>)>)

See Also