HOW TO:在 Visual Basic 中逐一查看集合
您可以使用 For Each 迴圈 (Loop) 逐一查看每個集合的項目。
範例
下列範例使用 For Each...Next 陳述式 (Visual Basic) 來存取集合中的每個項目。
Dim testCollection As New Microsoft.VisualBasic.Collection()
' The collection is empty until you add one or more items to it.
For Each collectionItem As Object In testCollection
' Perform desired processing on each item.
Next collectionItem
編譯程式碼
這個範例需要:
- 存取 System 命名空間。
請參閱
工作
HOW TO:加入、刪除和擷取集合項目 (Visual Basic)
參考
For Each...Next 陳述式 (Visual Basic)