Guid.TryFormat(Span<Char>, Int32, ReadOnlySpan<Char>) Method

Definition

Tries to format the current GUID instance into the provided character span.

public bool TryFormat(Span<char> destination, out int charsWritten, ReadOnlySpan<char> format = default);
member this.TryFormat : Span<char> * int * ReadOnlySpan<char> -> bool
Public Function TryFormat (destination As Span(Of Char), ByRef charsWritten As Integer, Optional format As ReadOnlySpan(Of Char) = Nothing) As Boolean

Parameters

destination
Span<Char>

The span in which to write the GUID as a span of characters.

charsWritten
Int32

When this method returns, contains the number of characters written into the span.

format
ReadOnlySpan<Char>

A read-only span containing the character representing one of the following specifiers that indicates the exact format to use when interpreting the current GUID instance: "N", "D", "B", "P", or "X".

Returns

true if the formatting operation was successful; false otherwise.

Applies to