Свойство ReadOnlyList<T>.Item
Gets the element at the specified index.
Пространство имен: Microsoft.SqlServer.Management.Sdk.Sfc
Сборка: Microsoft.SqlServer.Management.Sdk.Sfc (в Microsoft.SqlServer.Management.Sdk.Sfc.dll)
Синтаксис
'Декларация
Public ReadOnly Default Property Item ( _
index As Integer _
) As T
Get
'Применение
Dim instance As ReadOnlyList
Dim index As Integer
Dim value As T
value = instance(index)
public T this[
int index
] { get; }
public:
virtual property T default[int index] {
T get (int index) sealed;
}
abstract Item : 'T
override Item : 'T
JScript поддерживает использование индексированных свойств, но не объявление новых.
Параметры
- index
Тип: System.Int32
The zero-based index of the element to get.
Значение свойства
Тип: T
The element at the specified index.