Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ TryFormatBigInteger()

static bool System.Numerics.BigNumber.TryFormatBigInteger ( BigInteger value,
ReadOnlySpan< char > format,
NumberFormatInfo info,
Span< char > destination,
out int charsWritten )
inlinestaticpackage

Definition at line 427 of file BigNumber.cs.

428 {
429 FormatBigInteger(targetSpan: true, value, null, format, info, destination, out charsWritten, out var spanSuccess);
430 return spanSuccess;
431 }
static string FormatBigInteger(BigInteger value, string format, NumberFormatInfo info)
Definition BigNumber.cs:420

References System.destination, System.format, System.Numerics.BigNumber.FormatBigInteger(), System.info, and System.value.

Referenced by System.Numerics.BigInteger.TryFormat().