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

[Missing <summary> documentation for "P:Tools.CollectionsT.GenericT.ReadOnlyDictionary`2.System#Collections#Generic#IDictionary{TKey@TValue}#Item(`0)"]

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

Syntax

C#
TValue IDictionary<TKey, TValue>.this[
	TKey key
] { get; set; }
Visual Basic
Private Property IDIctionary_Item ( _
	key As TKey _
) As TValue Implements IDictionary(Of TKey, TValue).Item
	Get
	Set
Visual C++
private:
virtual property TValue IDIctionary_Item[TKey key] {
	TValue get (TKey key) sealed = IDictionary<TKey, TValue>::Item::get;
	void set (TKey key, TValue value) sealed = IDictionary<TKey, TValue>::Item::set;
}
F#
private abstract IDIctionary_Item : 'TValue with get, set
private override IDIctionary_Item : 'TValue with get, set
JScript
JScript does not support explicit interface implementations.

Parameters

key
Type: TKey

Implements

IDictionary<(Of <(<'TKey, TValue>)>)>..::..Item[([( TKey])])

See Also