Byte.TryFormat(Span<Char>, Int32, ReadOnlySpan<Char>, IFormatProvider) Methode
Definition
Versucht, den Wert der aktuellen Instanz einer ganzen 8-Bit-Zahl ohne Vorzeichen in die angegebene Zeichenspanne zu formatierenTries to format the value of the current 8-bit unsigned 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);
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
Parameter
Wenn diese Methode zurückgegeben wird, wird der Wert dieser Instanz als Zeichenspanne formatiert.When this method returns, this instance's value formatted as a span of characters.
- charsWritten
- Int32
Nach Ausführung dieser Methode die Anzahl der in destination
geschriebenen Zeichen.When this method returns, the number of characters that were written in destination
.
- format
- ReadOnlySpan<Char>
Eine Spanne, die die Zeichen enthält, die eine standardmäßig festgelegte oder benutzerdefinierte Formatzeichenfolge darstellen, die das akzeptable Format für destination
definiert.A span containing the charactes that represent a standard or custom format string that defines the acceptable format for destination
.
- provider
- IFormatProvider
Ein optionales Objekt, das kulturspezifische Formatierungsinformationen für destination
bereitstellt.An optional object that supplies culture-specific formatting information for destination
.
Gibt zurück
true
, wenn die Formatierung erfolgreich war, andernfalls false
true
if the formatting was successful; otherwise, false
.