PowerArgs.TabCompletion.ClearHistory C# (CSharp) Method

ClearHistory() public method

Clears all history saved on disk
public ClearHistory ( ) : void
return void
        public void ClearHistory()
        {
            if (File.Exists(HistoryFileNameInternal))
            {
                File.WriteAllText(HistoryFileNameInternal, "");
            }
        }