ReadOnlyDictionary<TKey, TValue>.Item Property
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Namespace: Microsoft.VisualStudio.TestTools.Framework
Assembly: Microsoft.VisualStudio.QualityTools.Common (in Microsoft.VisualStudio.QualityTools.Common.dll)
Syntax
'Declaration
Public ReadOnly Property Item ( _
key As TKey _
) As TValue
Get
'Usage
Dim instance As ReadOnlyDictionary
Dim key As TKey
Dim value As TValue
value = instance.Item(key)
public TValue this[
TKey key
] { get; }
public:
property TValue Item[TKey key] {
TValue get (TKey key);
}
JScript does not support indexed properties.
member Item : 'TValue
Parameters
- key
Type: TKey
Property Value
Type: TValue
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
ReadOnlyDictionary<TKey, TValue> Class