Ask Learn
Preview
Ask Learn is an AI assistant that can answer questions, clarify concepts, and define terms using trusted Microsoft documentation.
Please sign in to use Ask Learn.
Sign inThis browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
ToHexStringLower(Byte[]) |
Converts an array of 8-bit unsigned integers to its equivalent string representation that is encoded with lowercase hex characters. |
ToHexStringLower(ReadOnlySpan<Byte>) |
Converts a span of 8-bit unsigned integers to its equivalent string representation that is encoded with lowercase hex characters. |
ToHexStringLower(Byte[], Int32, Int32) |
Converts a subset of an array of 8-bit unsigned integers to its equivalent string representation that is encoded with lowercase hex characters. Parameters specify the subset as an offset in the input array and the number of elements in the array to convert. |
Converts an array of 8-bit unsigned integers to its equivalent string representation that is encoded with lowercase hex characters.
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
An array of 8-bit unsigned integers.
The string representation in hex of the elements in inArray
.
inArray
is null
.
inArray
is too large to be encoded.
Product | Versions |
---|---|
.NET | 9, 10 |
Converts a span of 8-bit unsigned integers to its equivalent string representation that is encoded with lowercase hex characters.
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
A span of 8-bit unsigned integers.
The string representation in hex of the elements in bytes
.
bytes
is too large to be encoded.
Product | Versions |
---|---|
.NET | 9, 10 |
Converts a subset of an array of 8-bit unsigned integers to its equivalent string representation that is encoded with lowercase hex characters. Parameters specify the subset as an offset in the input array and the number of elements in the array to convert.
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
An array of 8-bit unsigned integers.
An offset in inArray
.
The number of elements of inArray
to convert.
The string representation in hex of length
elements of inArray
, starting at position offset
.
inArray
is null
.
offset
or length
is negative.
-or-
offset
+ length
is greater than the length of inArray
.
-or-
inArray
is too large to be encoded.
Product | Versions |
---|---|
.NET | 9, 10 |
.NET feedback
.NET is an open source project. Select a link to provide feedback:
Ask Learn is an AI assistant that can answer questions, clarify concepts, and define terms using trusted Microsoft documentation.
Please sign in to use Ask Learn.
Sign in