3 writes to _currentChunk
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Text\StringBuilder.cs (3)
553return _manyChunks.MoveNext(ref _currentChunk); 562_currentChunk = next; 587_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)
545if (_currentChunk == _firstChunk) 557while (next.m_ChunkPrevious != _currentChunk) 573if (_currentChunk == null) 578return new ReadOnlyMemory<char>(_currentChunk.m_ChunkChars, 0, _currentChunk.m_ChunkLength);