SPBaseCollection.GetTypedEnumerator<T> 方法
返回以循环访问集合的类型安全枚举。
命名空间: Microsoft.SharePoint
程序集: Microsoft.SharePoint(位于 Microsoft.SharePoint.dll 中)
语法
声明
Public Function GetTypedEnumerator(Of T As Class) As IEnumerator(Of T)
用法
Dim instance As SPBaseCollection
Dim returnValue As IEnumerator(Of T)
returnValue = instance.GetTypedEnumerator()
public IEnumerator<T> GetTypedEnumerator<T>()
where T : class
类型参数
- T
集合中包含的对象的类型。
返回值
类型:System.Collections.Generic.IEnumerator<T>
循环访问集合IEnumerator<T>对象。