ServiceStack.Text.RecyclableMemoryStream.ToString C# (CSharp) Method

ToString() public method

Returns a useful string for debugging. This should not normally be called in actual production code.
public ToString ( ) : string
return string
        public override string ToString()
        {
            return string.Format("Id = {0}, Tag = {1}, Length = {2:N0} bytes", this.Id, this.Tag, this.Length);
        }