BzReader.HitCollection.Reset C# (CSharp) Method

Reset() public method

Sets the enumerator to its initial position, which is before the first element in the collection.
The collection was modified after the enumerator was created.
public Reset ( ) : void
return void
        public void Reset()
        {
            this.index = -1;
        }