BigInteger.TryFormat Method   
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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);
	abstract member TryFormat : Span<char> * int * ReadOnlySpan<char> * IFormatProvider -> bool
override this.TryFormat : Span<char> * int * ReadOnlySpan<char> * IFormatProvider -> bool
	member 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
- 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.
Returns
true if the formatting operation succeeds; false otherwise.