BzReader.HitCollection.MoveNext C# (CSharp) 메소드

MoveNext() 공개 메소드

Advances the enumerator to the next element of the collection.
The collection was modified after the enumerator was created.
public MoveNext ( ) : bool
리턴 bool
        public bool MoveNext()
        {
            this.index++;
            return (this.index < this.List.Count);
        }