ARCed.Core.Logger.Clear C# (CSharp) Method

Clear() public method

Clears the buffer of all logged text
public Clear ( bool notify = false ) : void
notify bool Flag to fire NoteTextChanged event
return void
        public void Clear(bool notify = false)
        {
            this._buffer.Clear();
            if (notify && this.TextChanged != null)
                this.TextChanged(this, new LogTextEventArgs(""));
        }