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

AppendLine() public method

Appends the string representation of the object to the log and adds a newline
public AppendLine ( object obj ) : void
obj object Object to append
return void
        public void AppendLine(object obj)
        {
            this._buffer.AppendLine(obj.ToString());
            if (this.TextChanged != null)
                this.TextChanged(this, new LogTextEventArgs(obj + "\n"));
            LogConsoleLine(obj);
        }

Same methods

Logger::AppendLine ( string text ) : void