Boolean.TryFormat(Span<Char>, Int32) Method
Definition
Tries to format the value of the current boolean instance into the provided span of characters.
public:
bool TryFormat(Span<char> destination, [Runtime::InteropServices::Out] int % charsWritten);
public bool TryFormat (Span<char> destination, out int charsWritten);
member this.TryFormat : Span<char> * int -> bool
Public Function TryFormat (destination As Span(Of Char), ByRef charsWritten As Integer) As Boolean
Parameters
When this method returns, this instance's value formatted as a span of characters.
- charsWritten
- Int32
When this method returns, the number of characters that were written in destination
.
Returns
true
if the formatting was successful; otherwise, false
.