ImmutableList<T>.IList<T>.Item[Int32] 属性

定义

获取或设置指定索引处的值。

property T System::Collections::Generic::IList<T>::Item[int] { T get(int index); void set(int index, T value); };
T System.Collections.Generic.IList<T>.Item[int index] { get; set; }
member this.System.Collections.Generic.IList<T>.Item(int) : 'T with get, set
 Property Item(index As Integer) As T Implements IList(Of T).Item

参数

index
Int32

要访问的项的索引(索引从零开始)。

属性值

T

存储在指定索引中的值。

实现

例外

index 为负或小于 Count 时,从 Getter 引发。

始终从资源库引发。

适用于