5 references to CopyTo
System.Net.Http.WinHttpHandler (1)
src\runtime\src\libraries\Common\src\Interop\Windows\WinHttp\Interop.winhttp.cs (1)
73builder.CopyTo(0, buffer, length - 1);
System.Private.CoreLib (4)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Text\StringBuilder.cs (3)
374CopyTo(startIndex, new Span<char>(ref result.GetRawStringData(), result.Length), result.Length); 877value.CopyTo(startIndex, new Span<char>(m_ChunkChars, m_ChunkLength, length), length); 906CopyTo(sourceIndex, new Span<char>(destination).Slice(destinationIndex), count);
System\Runtime\InteropServices\PInvokeMarshal.cs (1)
308stringBuilder.CopyTo(0, new Span<char>((char*)destination, length), length);