IEnumerator和IEnumerable 从名字常来看,IEnumerator是枚举器的意思,IEnumerable是可枚举的意思. 了解了两个接口代表的含义后,接着看源码: IEnumerator: public interface IEnumerator { // Interfaces are not serializable // Advances the enumerator to the next element of the enumeration and // returns…