Click or drag to resize

SpeedTryFormat Method

Tries to format the value of the current instance into the provided span of characters.

Namespace: InnerDrive.Quantitative
Assembly: InnerDrive.Quantitative (in InnerDrive.Quantitative.dll) Version: 5.0.8475.0
Syntax
C#
public bool TryFormat(
	Span<char> destination,
	out int charsWritten,
	ReadOnlySpan<char> format,
	IFormatProvider? provider
)

Parameters

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.

Return Value

Boolean
if the formatting was successful; otherwise, .

Implements

ISpanFormattableTryFormat(SpanChar, Int32, ReadOnlySpanChar, IFormatProvider)
See Also