Byte.TryFormat 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
TryFormat(Span<Byte>, Int32, ReadOnlySpan<Char>, IFormatProvider) |
嘗試將目前實例的值格式化為 UTF-8 到提供的位元組範圍。 |
TryFormat(Span<Char>, Int32, ReadOnlySpan<Char>, IFormatProvider) |
嘗試將目前不帶正負號的 8 位元整數執行個體值格式化為所提供字元範圍。 |
TryFormat(Span<Byte>, Int32, ReadOnlySpan<Char>, IFormatProvider)
- 來源:
- Byte.cs
- 來源:
- Byte.cs
嘗試將目前實例的值格式化為 UTF-8 到提供的位元組範圍。
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
參數
- bytesWritten
- Int32
當這個方法傳回時,會包含以 utf8Destination
寫入的位元組數目。
- format
- ReadOnlySpan<Char>
包含字元的範圍,這些字元代表的標準或自訂格式字串能定義 utf8Destination
可接受的格式。
- provider
- IFormatProvider
選擇性物件,其可為 utf8Destination
提供特定的文化特性格式資訊。
傳回
若格式化成功則為 true
,否則為 false
。
實作
適用於
TryFormat(Span<Char>, Int32, ReadOnlySpan<Char>, IFormatProvider)
- 來源:
- Byte.cs
- 來源:
- Byte.cs
- 來源:
- Byte.cs
嘗試將目前不帶正負號的 8 位元整數執行個體值格式化為所提供字元範圍。
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
abstract member TryFormat : Span<char> * int * ReadOnlySpan<char> * IFormatProvider -> bool
override 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
參數
- charsWritten
- Int32
當這個方法傳回時,會是寫入 destination
的字元數。
- format
- ReadOnlySpan<Char>
包含字元的範圍,這些字元代表的標準或自訂格式字串,能夠定義 destination
可接受的格式。
- provider
- IFormatProvider
選擇性物件,其可為 destination
提供特定的文化特性格式資訊。
傳回
若格式化成功則為 true
,否則為 false
。