IReadOnlyList<T>.Item Propiedad
Gets the element at the specified index.
Espacio de nombres: Microsoft.SqlServer.Management.Sdk.Sfc
Ensamblado: Microsoft.SqlServer.Management.Sdk.Sfc (en Microsoft.SqlServer.Management.Sdk.Sfc.dll)
Sintaxis
'Declaración
ReadOnly Default Property Item ( _
index As Integer _
) As T
Get
'Uso
Dim instance As IReadOnlyList
Dim index As Integer
Dim value As T
value = instance(index)
T this[
int index
] { get; }
property T default[int index] {
T get (int index);
}
abstract Item : 'T
JScript admite el uso de propiedades indizadas, pero no la declaración de otras nuevas.
Parámetros
- index
Tipo: System.Int32
The zero-based index of the element to get.
Valor de la propiedad
Tipo: T
The element at the specified index.