BzReader.HitCollection.MoveNext C# (CSharp) Method

MoveNext() public method

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