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)
5771
var handler = new TryWriteInterpolatedStringHandler(format._literalLength, format.
_formattedCount
, destination, provider, out bool shouldAppend);
src\libraries\System.Private.CoreLib\src\System\String.Manipulation.cs (2)
651
if (format.
_formattedCount
== 0)
657
var handler = new DefaultInterpolatedStringHandler(format._literalLength, format.
_formattedCount
, provider, stackalloc char[StackallocCharBufferSizeLimit]);
src\libraries\System.Private.CoreLib\src\System\Text\StringBuilder.cs (1)
1895
var handler = new AppendInterpolatedStringHandler(format._literalLength, format.
_formattedCount
, this, provider);