EntitySet<TEntity>.IList.Item 属性
获取或设置指定索引处的项。
命名空间: Microsoft.SharePoint.Linq
程序集: Microsoft.SharePoint.Linq(位于 Microsoft.SharePoint.Linq.dll 中)
语法
声明
Private Property Item ( _
index As Integer _
) As Object Implements IList.Item
Get
Set
用法
Dim instance As EntitySet
Dim index As Integer
Dim value As Object
value = CType(instance, IList).Item(index)
CType(instance, IList).Item(index) = value
ObjectIList.this[
int index
] { get; set; }
参数
index
类型:System.Int32项的索引。
属性值
类型:System.Object
表示,指定的索引处的项可强制转换成EntitySet<TEntity>所表示的实体的类型Object 。
实现
备注
如果尝试将项设置为已存在于集合中的对象,不会发生任何操作。