Gets or sets the dictionary item.

Namespace: MonoSoftware.Core.Collections
Assembly: MonoSoftware.Core (in MonoSoftware.Core.dll) Version: 1.0.40.669 (1.0.40.669)

Syntax

C#
public virtual TValue this[
	TKey key
] { get; set; }
Visual Basic
Public Overridable Default Property Item ( 
	key As TKey
) As TValue
	Get
	Set
Visual C++
public:
virtual property TValue default[TKey key] {
	TValue get (TKey key);
	void set (TKey key, TValue value);
}
F#
abstract Item : 'TValue with get, set
override Item : 'TValue with get, set

Parameters

key
Type: TKey
The key of the item to get or set

Return Value

Type: TValue
Dictionary item

Implements

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

See Also