UBinarySizeTryFormat Method
Tries to format the value of the current instance into the provided span of characters.
Namespace: OokiiAssembly: Ookii.BinarySize (in Ookii.BinarySize.dll) Version: 1.2.0+20f0bdf981c7baf115c68ccab612b1a031efcb4d
public bool TryFormat(
Span<char> destination,
out int charsWritten,
ReadOnlySpan<char> format,
IFormatProvider? provider
)
Public Function TryFormat (
destination As Span(Of Char),
<OutAttribute> ByRef charsWritten As Integer,
format As ReadOnlySpan(Of Char),
provider As IFormatProvider
) As Boolean
public:
virtual bool TryFormat(
Span<wchar_t> destination,
[OutAttribute] int% charsWritten,
ReadOnlySpan<wchar_t> format,
IFormatProvider^ provider
) sealed
abstract TryFormat :
destination : Span<char> *
charsWritten : int byref *
format : ReadOnlySpan<char> *
provider : IFormatProvider -> bool
override TryFormat :
destination : Span<char> *
charsWritten : int byref *
format : ReadOnlySpan<char> *
provider : IFormatProvider -> bool
- destination SpanChar
- The span in which to write this instance's value formatted as a span of characters.
- charsWritten Int32
- When this method returns, contains the number of characters that were written in destination.
- format ReadOnlySpanChar
- A span containing the characters that represent a standard or custom format string that defines the acceptable format for destination.
- provider IFormatProvider
- An optional object that supplies culture-specific formatting information for destination.
Boolean if the formatting was successful; otherwise,
.
ISpanFormattableTryFormat(SpanChar, Int32, ReadOnlySpanChar, IFormatProvider)