枚举器
标准化了集合的遍历过程,而无需关心集合的具体实现细节。
1 | // \runtime\src\libraries\System.Private.CoreLib\src\System\Collections\IEnumerator.cs |
对应的泛型接口:
1 | // \runtime\src\libraries\System.Private.CoreLib\src\System\Collections\Generic\IEnumerator.cs |
字典枚举器接口:
1 | // \runtime\src\libraries\System.Private.CoreLib\src\System\Collections\Generic\IDictionaryEnumerator.cs |