ARCed.Scintilla.LineCollection.LinesEnumerator.MoveNext C# (CSharp) Метод

MoveNext() публичный Метод

public MoveNext ( ) : bool
Результат bool
            public bool MoveNext()
            {
                if (++this._index >= this._count)
                    return false;

                return true;
            }
LineCollection.LinesEnumerator