10 references to StringBuilder
dotnet-svcutil-lib (1)
FrameworkFork\Microsoft.Xml\Xml\BufferBuilder.cs (1)
254
_stringBuilder = new
StringBuilder
(value, start, count, 0);
Microsoft.AspNetCore.Mvc.Core (1)
Formatters\MediaType.cs (1)
225
var builder = new
StringBuilder
(mediaType.Buffer, mediaType.Offset, charsetOffset, finalLength);
Microsoft.AspNetCore.Mvc.Localization (1)
ViewLocalizer.cs (1)
101
var builder = new
StringBuilder
(path, startIndex, length, capacity);
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Globalization\CultureData.cs (2)
2022
result ??= new
StringBuilder
(str, start, i - start, str.Length);
2025
result ??= new
StringBuilder
(str, start, i - start, str.Length);
src\libraries\System.Private.CoreLib\src\System\Globalization\CultureData.Nls.cs (2)
227
result ??= new
StringBuilder
(str, 0, i, str.Length * 2);
249
result ??= new
StringBuilder
(str, 0, i, str.Length * 2);
src\libraries\System.Private.CoreLib\src\System\Text\StringBuilder.cs (1)
106
:
this
(value, 0, value?.Length ?? 0, capacity)
System.Private.Xml (2)
System\Xml\Xsl\XsltOld\RecordBuilder.cs (2)
631
newComment = new
StringBuilder
(comment, begin, index, 2 * comment.Length);
687
newPI = new
StringBuilder
(pi, begin, index, 2 * pi.Length);