在 foreach 循环容器中的 foreach 项目类型枚举器中引用的 collection 中的项目是什么

what are the items in a collection that referred in foreach item type enumerator within foreach loop container

当我最近浏览关于 SSIS -- Foreach Item Enumerator 的 Microsoft 文档时,以下几点引起了我的注意:

Foreach Item enumerator to enumerate items that are collections. For example, you can enumerate the names of executables and working directories that an Execute Process task uses.

You use the Foreach Item enumerator to enumerate items in a collection.

从以上两个突出显示的陈述中,哪些项目被认为是 collections?是否有任何文档来源来理解 'collection' 和 'its items' 的概念?

谁能帮我理解这个场景?感谢您抽出宝贵的时间。这个is the link from the above-highlighted lines of text is taken

该集合是 ForEach 循环容器编辑器中预定义的 table(列和行)。比如你需要枚举三个目录下的文件,可以添加一个ForEach循环容器,带一个item枚举器来遍历目录名,再用一个ForEach循环容器枚举每个目录下的文件。

您可以在以下文章中阅读更多详细信息: