IrcShark.Extensions.Terminal.History.CursorToEnd C# (CSharp) Method

CursorToEnd() public method

Moves the cursor to the end of the history.
public CursorToEnd ( ) : void
return void
        public void CursorToEnd()
        {
            if (head == tail)
                return;

            cursor = head;
        }