| FastKeyedCollectionTKey, TItemItem 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 TItem this[
TKey key
] { get; set; }
Public Property Item (
key As TKey
) As TItem
Get
Set
public:
property TItem Item[TKey key] {
TItem get (TKey key);
void set (TKey key, TItem value);
}
Parameters
- key
- Type: TKey
The key of the value to get or set.
Property Value
Type:
TItem[Missing <value> documentation for "P:Cauldron.Collections.FastKeyedCollection`2.Item(`0)"]
Return Value
Type:
TItem
The value associated with the specified key.
If the specified key is not found, a null is returned.
See Also