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

AppendLine() 공개 메소드

Appends the string representation of the object to the log and adds a newline
public AppendLine ( object obj ) : void
obj object Object to append
리턴 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