Convert.ToHexStringLower 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
ToHexStringLower(Byte[]) |
将 8 位无符号整数数组转换为其等效的字符串表示形式,该表示形式使用小写十六进制字符进行编码。 |
ToHexStringLower(ReadOnlySpan<Byte>) |
将 8 位无符号整数的范围转换为其用小写十六进制字符编码的等效字符串表示形式。 |
ToHexStringLower(Byte[], Int32, Int32) |
将 8 位无符号整数数组的子集转换为其用小写十六进制字符编码的等效字符串表示形式。 参数将子集指定为输入数组中的偏移量和要转换的数组中的元素数。 |
ToHexStringLower(Byte[])
- Source:
- 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>)
- Source:
- 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)
- Source:
- 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
太大,无法进行编码。