LazyDictionary<TKey, TValue>.Item Property (TKey)
Namespace: Microsoft.WindowsAzure.Common.Internals
Assembly: Microsoft.WindowsAzure.Common (in Microsoft.WindowsAzure.Common.dll)
Syntax
public TValue this[
TKey key
] { get; set; }
public:
property TValue default[
TKey key
] {
virtual TValue get(TKey key) sealed;
virtual void set(TKey key, TValue value) sealed;
}
abstract Item :
key:'TKey -> 'TValue with get, set
override Item :
key:'TKey -> 'TValue with get, set
Public Property Item (
key As TKey
) As TValue
Parameters
- key
Type: TKey
Property Value
Type: TValue
Implements
IDictionary<TKey, TValue>.Item[TKey]
See Also
LazyDictionary<TKey, TValue> Class
Microsoft.WindowsAzure.Common.Internals Namespace
Return to top