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)
225var builder = new StringBuilder(mediaType.Buffer, mediaType.Offset, charsetOffset, finalLength);
Microsoft.AspNetCore.Mvc.Localization (1)
ViewLocalizer.cs (1)
101var builder = new StringBuilder(path, startIndex, length, capacity);
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Globalization\CultureData.cs (2)
2022result ??= new StringBuilder(str, start, i - start, str.Length); 2025result ??= new StringBuilder(str, start, i - start, str.Length);
src\libraries\System.Private.CoreLib\src\System\Globalization\CultureData.Nls.cs (2)
227result ??= new StringBuilder(str, 0, i, str.Length * 2); 249result ??= 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)
631newComment = new StringBuilder(comment, begin, index, 2 * comment.Length); 687newPI = new StringBuilder(pi, begin, index, 2 * pi.Length);