Implemented interface member:
method
TryFormat
System.ISpanFormattable.TryFormat(System.Span<System.Char>, out System.Int32, System.ReadOnlySpan<System.Char>, System.IFormatProvider)
8 references to TryFormat
System.Numerics.Tensors (3)
System\Buffers\NIndex.cs (1)
179bool formatted = ((uint)Value).TryFormat(span.Slice(1), out int charsWritten);
System\Buffers\NRange.cs (2)
74bool formatted = ((uint)Start.Value).TryFormat(span.Slice(pos), out int charsWritten); 85formatted = ((uint)End.Value).TryFormat(span.Slice(pos), out charsWritten);
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Index.cs (1)
159bool formatted = ((uint)Value).TryFormat(span.Slice(1), out int charsWritten);
src\libraries\System.Private.CoreLib\src\System\Range.cs (2)
78bool formatted = ((uint)Start.Value).TryFormat(span.Slice(pos), out int charsWritten); 89formatted = ((uint)End.Value).TryFormat(span.Slice(pos), out charsWritten);
System.Private.Xml (1)
System\Xml\XmlConvert.cs (1)
1693return value.TryFormat(destination, out charsWritten, default, CultureInfo.InvariantCulture);
System.Text.Json (1)
System\Text\Json\Nodes\JsonArray.cs (1)
253bool formatted = ((uint)index).TryFormat(chars, out int charsWritten);