Implemented interface member:
method
TryFormat
System.ISpanFormattable.TryFormat(System.Span<System.Char>, out System.Int32, System.ReadOnlySpan<System.Char>, System.IFormatProvider)
10 references to TryFormat
ILCompiler.Compiler (1)
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\CoffObjectWriter.cs (1)
623offset.TryFormat(charBuffer, out charsWritten);
ILCompiler.ReadyToRun (1)
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\CoffObjectWriter.cs (1)
623offset.TryFormat(charBuffer, out charsWritten);
System.Net.Primitives (1)
System\Net\IPAddressParser.cs (1)
214scopeId.TryFormat(MemoryMarshal.Cast<TChar, char>(destination).Slice(pos), out bytesWritten);
System.Private.CoreLib (4)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Index.cs (1)
159bool formatted = ((uint)Value).TryFormat(span.Slice(1), out int charsWritten);
src\runtime\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);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Version.cs (1)
253((uint)value).TryFormat(Unsafe.BitCast<Span<TChar>, Span<char>>(destination), out valueCharsWritten) :
System.Private.Xml (1)
System\Xml\XmlConvert.cs (1)
1693return value.TryFormat(destination, out charsWritten, default, CultureInfo.InvariantCulture);
System.Security.Principal.Windows (1)
System\Security\Principal\SID.cs (1)
729((uint)values[index]).TryFormat(result.Slice(length), out written);
System.Text.Json (1)
System\Text\Json\Nodes\JsonArray.cs (1)
253bool formatted = ((uint)index).TryFormat(chars, out int charsWritten);