ConcurrentIndexedDictionaryTKey, TValueGet Method
Gets the value associated with the specified key in the dictionary.
Namespace: SnapDB.CollectionsAssembly: SnapDB (in SnapDB.dll) Version: 1.0.102.0 -- Release Build+29075351d0e5aa4dea46a5c520805222f672dc2e
public TValue Get(
TKey key
)
Public Function Get (
key As TKey
) As TValue
public:
TValue Get(
TKey key
)
- key TKey
- The key for which to retrieve the associated value.
TValue
The value associated with the specified key.
| KeyNotFoundException |
Thrown if the specified key is not found in the dictionary.
|