Mono.Terminal.LineEditor.History.Next C# (CSharp) Method

Next() public method

public Next ( ) : string
return string
            public string Next()
            {
                if (!NextAvailable())
                    return null;

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