Batman.Core.Communication.CommunicationManager.ToString C# (CSharp) Method

ToString() public method

Returns a System.String that represents this instance.
public ToString ( ) : string
return string
        public override string ToString()
        {
            return new StringBuilder()
                        .AppendLine()
                        .AppendLineFormat("Formatters: {0}", Formatters.ToString(x => x.Name))
                        .AppendFormat("Communicators: {0}", Communicators.ToString(x => x.Value.Name))
                        .ToString();
        }