Version.TryFormat Method

Definition

Overloads

TryFormat(Span<Char>, Int32, Int32)

Tries to format this version instance into a span of characters.

TryFormat(Span<Char>, Int32)

Tries to format this version instance into a span of characters.

TryFormat(Span<Char>, Int32, Int32)

Tries to format this version instance into a span of characters.

public:
 bool TryFormat(Span<char> destination, int fieldCount, [Runtime::InteropServices::Out] int % charsWritten);
public bool TryFormat (Span<char> destination, int fieldCount, out int charsWritten);
member this.TryFormat : Span<char> * int * int -> bool
Public Function TryFormat (destination As Span(Of Char), fieldCount As Integer, ByRef charsWritten As Integer) As Boolean

Parameters

destination
Span<Char>

The span in which to write this instance's value formatted as a span of characters.

fieldCount
Int32

The number of components to return. This value ranges from 0 to 4.

charsWritten
Int32

When this method returns, contains the number of characters that were written in destination.

Returns

Boolean

true if the formatting was successful; otherwise, false.

Applies to

TryFormat(Span<Char>, Int32)

Tries to format this version instance into a 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

destination
Span<Char>

The span in which to write this instance's value formatted as a span of characters.

charsWritten
Int32

When this method returns, contains the number of characters that were written in destination.

Returns

Boolean

true if the formatting was successful; otherwise, false.

Applies to