ARCed.Core.Logger.Clear C# (CSharp) 메소드

Clear() 공개 메소드

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