Convert.TryToHexString 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
將8位不帶正負號整數的範圍轉換為以大寫十六進位字元編碼的對等範圍表示。
public:
static bool TryToHexString(ReadOnlySpan<System::Byte> source, Span<char> destination, [Runtime::InteropServices::Out] int % charsWritten);
public static bool TryToHexString (ReadOnlySpan<byte> source, Span<char> destination, out int charsWritten);
static member TryToHexString : ReadOnlySpan<byte> * Span<char> * int -> bool
Public Shared Function TryToHexString (source As ReadOnlySpan(Of Byte), destination As Span(Of Char), ByRef charsWritten As Integer) As Boolean
參數
- source
- ReadOnlySpan<Byte>
8 位無符號整數範圍。
- charsWritten
- Int32
當這個方法傳回時,會包含以 destination
撰寫的字元數目。
傳回
如果轉換成功,true
;否則,false
。