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

Append() public method

Appends the string representation of the object to the log
public Append ( object obj ) : void
obj object Object to append
return void
        public void Append(object obj)
        {
            this._buffer.Append(obj);
            if (this.TextChanged != null)
                this.TextChanged(this, new LogTextEventArgs(obj.ToString()));
            LogConsole(obj);
        }

Same methods

Logger::Append ( string text ) : void