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

◆ TryFormat()

bool System.UInt64.TryFormat ( Span< char > destination,
out int charsWritten,
ReadOnlySpan< char > format = default(ReadOnlySpan<char>),
IFormatProvider? provider = null )
inline

Implements System.ISpanFormattable.

Definition at line 112 of file UInt64.cs.

113 {
114 return Number.TryFormatUInt64(this, format, provider, destination, out charsWritten);
115 }

References System.destination, System.format, and System.Number.TryFormatUInt64().