3 writes to _currentChunk
System.Private.CoreLib (3)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Text\StringBuilder.cs (3)
570return _manyChunks.MoveNext(ref _currentChunk); 579_currentChunk = next; 604_currentChunk = null; // MoveNext will find the last chunk if we do this.
5 references to _currentChunk
System.Private.CoreLib (5)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Text\StringBuilder.cs (5)
562if (_currentChunk == _firstChunk) 574while (next.m_ChunkPrevious != _currentChunk) 590if (_currentChunk == null) 595return new ReadOnlyMemory<char>(_currentChunk.m_ChunkChars, 0, _currentChunk.m_ChunkLength);