SfcReferenceCollection<K, T, S>.Item Propiedad
Gets the element associated with the specified key.
Espacio de nombres: Microsoft.SqlServer.Management.Sdk.Sfc
Ensamblado: Microsoft.SqlServer.Management.Sdk.Sfc (en Microsoft.SqlServer.Management.Sdk.Sfc.dll)
Sintaxis
'Declaración
Public ReadOnly Default Property Item ( _
key As K _
) As T
Get
'Uso
Dim instance As SfcReferenceCollection
Dim key As K
Dim value As T
value = instance(key)
public T this[
K key
] { get; }
public:
virtual property T default[K key] {
T get (K key) sealed;
}
abstract Item : 'T
override Item : 'T
JScript admite el uso de propiedades indizadas, pero no la declaración de otras nuevas.
Parámetros
- key
Tipo: K
The key of the value to get.
Valor de la propiedad
Tipo: T
The element associated with the specified key.
Implementa
IReadOnlyDictionary<K, T>.Item[K]