1 write to _sb
Microsoft.CodeAnalysis.Scripting (1)
Hosting\ObjectFormatter\CommonObjectFormatter.Builder.cs (1)
29
_sb
= new StringBuilder();
7 references to _sb
Microsoft.CodeAnalysis.Scripting (7)
Hosting\ObjectFormatter\CommonObjectFormatter.Builder.cs (7)
37
get { return _options.MaximumOutputLength -
_sb
.Length; }
43
get { return _currentLimit -
_sb
.Length; }
55
_currentLimit = (int)Math.Min((long)
_sb
.Length + _options.MaximumLineLength, _options.MaximumOutputLength);
71
_sb
.Append(ellipsis);
83
_sb
.Append(c, length);
100
_sb
.Append(str, start, length);
177
return
_sb
.ToString();