-
Couldn't load subscription status.
- Fork 35
P_CodeJam_Threading_ConcurrentLazyDictionary_2_Item
andrewvk edited this page Apr 1, 2016
·
5 revisions
[This is preliminary documentation and is subject to change.]
Gets the element that has the specified key in the read-only dictionary.
Namespace: CodeJam.Threading
Assembly: CodeJam (in CodeJam.dll) Version: 1.0.0.0 (1.0.0.0)
C#
public TValue this[
TKey key
] { get; }VB
Public ReadOnly Default Property Item (
key As TKey
) As TValue
GetF#
abstract Item : 'TValue with get
override Item : 'TValue with get
- key
- Type: TKey
The key to locate.
Type: TValue
The element that has the specified key in the read-only dictionary.
IReadOnlyDictionary(TKey, TValue).Item(TKey)
| Exception | Condition |
|---|---|
| ArgumentNullException | key is null. |
| KeyNotFoundException | The property is retrieved and key is not found. |
ConcurrentLazyDictionary(TKey, TValue) Class
CodeJam.Threading Namespace