| FastDictionaryTKey, TValueItem Property |
Gets or sets the value associated with the specified key.
Namespace:
Cauldron.Collections
Assembly:
Cauldron.Collections (in Cauldron.Collections.dll) Version: 1.0.0
Syntax public TValue this[
TKey key
] { get; set; }
Public Property Item (
key As TKey
) As TValue
Get
Set
public:
virtual property TValue Item[TKey key] {
TValue get (TKey key) sealed;
void set (TKey key, TValue value) sealed;
}
Parameters
- key
- Type: TKey
The key of the value to get or set.
Property Value
Type:
TValue[Missing <value> documentation for "P:Cauldron.Collections.FastDictionary`2.Item(`0)"]
Return Value
Type:
TValue
The value associated with the specified key.
If the specified key is not found, a null is returned.
Implements
IDictionaryTKey, TValueItemTKeySee Also