摘要: 声明IEnumerator的枚举数 要创建非泛型接口的枚举数,必须声明实现IEnumerator接口的类,IEnumerator接口有如下特性: 1、她是System.Collections命名空间的成员 2、它包含3个方法Current、MoveNext和Reset 例如:下面代码实现了一个列出颜色名数组的枚举数类: 1 using System.Collections; 2 3 class ColorEnumerator:IEnumerator 4 { 5 string [] Colors; 6 int Position=-1; 7 8 ... 阅读全文
posted @ 2013-10-07 11:31 YoMe 阅读(2043) 评论(0) 推荐(0) 编辑