3 writes to _currentChunk
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Text\StringBuilder.cs (3)
555
return _manyChunks.MoveNext(ref
_currentChunk
);
564
_currentChunk
= next;
589
_currentChunk
= null; // MoveNext will find the last chunk if we do this.
5 references to _currentChunk
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Text\StringBuilder.cs (5)
547
if (
_currentChunk
== _firstChunk)
559
while (next.m_ChunkPrevious !=
_currentChunk
)
575
if (
_currentChunk
== null)
580
return new ReadOnlyMemory<char>(
_currentChunk
.m_ChunkChars, 0,
_currentChunk
.m_ChunkLength);