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

◆ TryFormat()

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

Implements System.ISpanFormattable.

Definition at line 96 of file UInt16.cs.

97 {
98 return Number.TryFormatUInt32(this, format, provider, destination, out charsWritten);
99 }

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