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

Update() public method

Updates the current cursor location with the string, to support editing of history items.
For the current line to participate, an Append must be done before.
public Update ( string s ) : void
s string The new value for the history item at the current location.
return void
        public void Update(string s)
        {
            history [cursor] = s;
        }