SByte.TryFormat Method (System) (original) (raw)

Definition

Namespace:

System

Assemblies:

netstandard.dll, System.Runtime.dll

Assembly:

System.Runtime.dll

Assembly:

netstandard.dll

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

Overloads

TryFormat(Span, Int32, ReadOnlySpan, IFormatProvider)

Source:

SByte.cs

Source:

SByte.cs

Source:

SByte.cs

Tries to format the value of the current instance as UTF-8 into the provided span of bytes.

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

Parameters

utf8Destination

Span<Byte>

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

bytesWritten

Int32

When this method returns, contains the number of bytes that were written in utf8Destination.

format

ReadOnlySpan<Char>

A span containing the characters that represent a standard or custom format string that defines the acceptable format for utf8Destination.

provider

IFormatProvider

An optional object that supplies culture-specific formatting information for utf8Destination.

Returns

true if the formatting was successful; otherwise, false.

Implements

Applies to

TryFormat(Span, Int32, ReadOnlySpan, IFormatProvider)

Source:

SByte.cs

Source:

SByte.cs

Source:

SByte.cs

Source:

SByte.cs

Tries to format the value of the current 8-bit signed integer instance into the provided span of characters.

public bool TryFormat(Span<char> destination, out int charsWritten, ReadOnlySpan<char> format = default, IFormatProvider? provider = default);
public bool TryFormat(Span<char> destination, out int charsWritten, ReadOnlySpan<char> format = default, IFormatProvider provider = default);
abstract member TryFormat : Span<char> * int * ReadOnlySpan<char> * IFormatProvider -> bool
override this.TryFormat : Span<char> * int * ReadOnlySpan<char> * IFormatProvider -> bool
member this.TryFormat : Span<char> * int * ReadOnlySpan<char> * IFormatProvider -> bool
Public Function TryFormat (destination As Span(Of Char), ByRef charsWritten As Integer, Optional format As ReadOnlySpan(Of Char) = Nothing, Optional provider As IFormatProvider = Nothing) 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.

format

ReadOnlySpan<Char>

A span containing the characters that represent a standard or custom format string that defines the acceptable format for destination.

provider

IFormatProvider

An optional object that supplies culture-specific formatting information for destination.

Returns

true if the formatting was successful; otherwise, false.

Implements

See also

Applies to