C# Class Com.Aote.ObjectTools.DataPagerConverter.Enumerator

为翻页对象专门制作的枚举对象,该枚举对象有一个count属性代表总数,current属性代表当前号。每次迭代 时,current加1,直到等于count为止。
Inheritance: IEnumerator
Afficher le fichier Open project: DuBin1988/newsellinggas

Méthodes publiques

Méthode Description
Enumerator ( int count ) : System
MoveNext ( ) : bool

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

Reset ( ) : void

重置current的值为0

Method Details

Enumerator() public méthode

public Enumerator ( int count ) : System
count int
Résultat System

MoveNext() public méthode

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

Reset() public méthode

重置current的值为0
public Reset ( ) : void
Résultat void