CSharpRoboticsLib.Utility.Logger.ToString C# (CSharp) Method

ToString() public static method

Returns the contents of the Logger
public static ToString ( ) : string
return string
        public static new string ToString()
        {
            StringBuilder s = new StringBuilder();
            foreach (TimeStampedMessage t in _messages)
            {
                s.Append(t);
            }
            return s.ToString();
        }