Convert.ToHexStringLower 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
ToHexStringLower(Byte[]) |
將8位無符號整數數位轉換為其以小寫十六進位字元編碼的對等字串表示。 |
ToHexStringLower(ReadOnlySpan<Byte>) |
將8位無符號整數的範圍轉換為以小寫十六進位字元編碼的對等字串表示。 |
ToHexStringLower(Byte[], Int32, Int32) |
將 8 位無符號整數數位的子集,轉換為以小寫十六進位字元編碼的對等字串表示。 參數會將子集指定為輸入數位列中的位移,以及陣列中要轉換的項目數目。 |
ToHexStringLower(Byte[])
- 來源:
- Convert.cs
將8位無符號整數數位轉換為其以小寫十六進位字元編碼的對等字串表示。
public:
static System::String ^ ToHexStringLower(cli::array <System::Byte> ^ inArray);
public static string ToHexStringLower (byte[] inArray);
static member ToHexStringLower : byte[] -> string
Public Shared Function ToHexStringLower (inArray As Byte()) As String
參數
- inArray
- Byte[]
8 位無符號整數的陣列。
傳回
inArray
中元素十六進位的字串表示。
例外狀況
inArray
null
。
inArray
太大而無法編碼。
適用於
ToHexStringLower(ReadOnlySpan<Byte>)
- 來源:
- Convert.cs
將8位無符號整數的範圍轉換為以小寫十六進位字元編碼的對等字串表示。
public:
static System::String ^ ToHexStringLower(ReadOnlySpan<System::Byte> bytes);
public static string ToHexStringLower (ReadOnlySpan<byte> bytes);
static member ToHexStringLower : ReadOnlySpan<byte> -> string
Public Shared Function ToHexStringLower (bytes As ReadOnlySpan(Of Byte)) As String
參數
- bytes
- ReadOnlySpan<Byte>
8 位無符號整數範圍。
傳回
bytes
中元素十六進位的字串表示。
例外狀況
bytes
太大而無法編碼。
適用於
ToHexStringLower(Byte[], Int32, Int32)
- 來源:
- Convert.cs
將 8 位無符號整數數位的子集,轉換為以小寫十六進位字元編碼的對等字串表示。 參數會將子集指定為輸入數位列中的位移,以及陣列中要轉換的項目數目。
public:
static System::String ^ ToHexStringLower(cli::array <System::Byte> ^ inArray, int offset, int length);
public static string ToHexStringLower (byte[] inArray, int offset, int length);
static member ToHexStringLower : byte[] * int * int -> string
Public Shared Function ToHexStringLower (inArray As Byte(), offset As Integer, length As Integer) As String
參數
- inArray
- Byte[]
8 位無符號整數的陣列。
- offset
- Int32
inArray
中的位移。
- length
- Int32
要轉換的 inArray
項目數目。
傳回
inArray
length
元素十六進位的字串表示,從位置開始 offset
。
例外狀況
inArray
null
。
offset
或 length
為負數。
-或-
offset
+
length
大於 inArray
長度。
-或-
inArray
太大而無法編碼。