HOW TO:在 Visual Basic 中逐一查看集合
更新:2007 年 11 月
您可以使用 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 命名空間。