Guid.TryFormat Method

Definition

Overloads

TryFormat(Span<Byte>, Int32, ReadOnlySpan<Char>)
TryFormat(Span<Char>, Int32, ReadOnlySpan<Char>)

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

TryFormat(Span<Byte>, Int32, ReadOnlySpan<Char>)

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

Parameters

utf8Destination
Span<Byte>
bytesWritten
Int32
format
ReadOnlySpan<Char>

Returns

Applies to

TryFormat(Span<Char>, Int32, ReadOnlySpan<Char>)

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 input: "N", "D", "B", "P", or "X".

Returns

true if the formatting operation was successful; false otherwise.

Applies to