1 write to _formattedCount
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Text\CompositeFormat.cs (1)
64_formattedCount = formattedCount;
4 references to _formattedCount
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\MemoryExtensions.cs (1)
5771var handler = new TryWriteInterpolatedStringHandler(format._literalLength, format._formattedCount, destination, provider, out bool shouldAppend);
src\libraries\System.Private.CoreLib\src\System\String.Manipulation.cs (2)
651if (format._formattedCount == 0) 657var handler = new DefaultInterpolatedStringHandler(format._literalLength, format._formattedCount, provider, stackalloc char[StackallocCharBufferSizeLimit]);
src\libraries\System.Private.CoreLib\src\System\Text\StringBuilder.cs (1)
1895var handler = new AppendInterpolatedStringHandler(format._literalLength, format._formattedCount, this, provider);