Click or drag to resize
DigitalRuneConsoleHistory Property
Gets the command history.

Namespace: DigitalRune.Game.UI.Controls
Assembly: DigitalRune.Game.UI (in DigitalRune.Game.UI.dll) Version: 1.8.0.0 (1.8.0.14553)
Syntax
public List<string> History { get; }

Property Value

Type: ListString
The command history.
Remarks
This list contains the last commands (whole line of text including arguments) that were entered into the console. The max number of history entries is limited by MaxHistoryEntries. The entries are sorted. History[0] contains the oldest entry. History[History.Count - 1] contains the newest entry. The list does not contain duplicate entries.
See Also