Mono.Terminal.LineEditor.History.Next C# (CSharp) Метод

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

public Next ( ) : string
Результат string
            public string Next()
            {
                if (!NextAvailable())
                    return null;

                cursor = (cursor + 1) % history.Length;
                return history[cursor];
            }