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

AppendFormat() public method

Appends text, replacing items in formatted string with objects
public AppendFormat ( string text ) : void
text string Format string
return void
        public void AppendFormat(string text, params object[] objs)
        {
            string str = String.Format(text, objs);
            this._buffer.Append(str);
            if (this.TextChanged != null)
                this.TextChanged(this, new LogTextEventArgs(str));
            LogConsole(str);
        }