ARCed.Scintilla.LineCollection.LinesEnumerator.MoveNext C# (CSharp) Method

MoveNext() public method

public MoveNext ( ) : bool
return bool
            public bool MoveNext()
            {
                if (++this._index >= this._count)
                    return false;

                return true;
            }
LineCollection.LinesEnumerator