PersistentDictionaryTKey, TValueItem Property |
Gets the value corresponding to the specified key. Throws
KeyNotFoundException
if the key does not exist in the dictionary.
Namespace:
AGI.Foundation.Infrastructure.Threading
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public TValue this[
TKey key
] { get; }
Public ReadOnly Default Property Item (
key As TKey
) As TValue
Get
public:
property TValue default[TKey key] {
TValue get (TKey key);
}
member Item : 'TValue with get
Parameters
- key
- Type: TKey
The key to find in the dictionary.
Return Value
Type:
TValueThe value in the dictionary corresponding to the given
key.
See Also