BigInteger.TryFormat Method

Definition

Formats this big integer instance into a span of characters.

public bool TryFormat (Span<char> destination, out int charsWritten, ReadOnlySpan<char> format = default, IFormatProvider? provider = default);
public bool TryFormat (Span<char> destination, out int charsWritten, ReadOnlySpan<char> format = default, IFormatProvider provider = default);
member this.TryFormat : Span<char> * int * ReadOnlySpan<char> * IFormatProvider -> bool
abstract member TryFormat : Span<char> * int * ReadOnlySpan<char> * IFormatProvider -> bool
override this.TryFormat : Span<char> * int * ReadOnlySpan<char> * IFormatProvider -> bool
Public Function TryFormat (destination As Span(Of Char), ByRef charsWritten As Integer, Optional format As ReadOnlySpan(Of Char) = Nothing, Optional provider As IFormatProvider = Nothing) As Boolean

Parameters

destination
Span<Char>

The span of characters into which this instance will be written.

charsWritten
Int32

When the method returns, contains the length of the span in number of characters.

format
ReadOnlySpan<Char>

A read-only span of characters that specifies the format for the formatting operation.

provider
IFormatProvider

An object that supplies culture-specific formatting information about value.

Returns

true if the formatting operation succeeds; false otherwise.

Implements

Applies to

See also