C# 클래스 Com.Aote.ObjectTools.DataPagerConverter.Enumerator

为翻页对象专门制作的枚举对象,该枚举对象有一个count属性代表总数,current属性代表当前号。每次迭代 时,current加1,直到等于count为止。
상속: IEnumerator
파일 보기 프로젝트 열기: DuBin1988/newsellinggas

공개 메소드들

메소드 설명
Enumerator ( int count ) : System
MoveNext ( ) : bool

往后迭代,这时current+1,如果到了最后,也就是current=count,返回false。

Reset ( ) : void

重置current的值为0

메소드 상세

Enumerator() 공개 메소드

public Enumerator ( int count ) : System
count int
리턴 System

MoveNext() 공개 메소드

往后迭代,这时current+1,如果到了最后,也就是current=count,返回false。
public MoveNext ( ) : bool
리턴 bool

Reset() 공개 메소드

重置current的值为0
public Reset ( ) : void
리턴 void