This 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 trysigning in orchanging directories.
Access to this page requires authorization. You can trychanging 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.
| Name | Description |
|---|---|
| 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[] -> stringPublic Shared Function ToHexStringLower (inArray As Byte()) As StringAn array of 8-bit unsigned integers.
The string representation in hex of the elements ininArray.
inArray isnull.
inArray is too large to be encoded.
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> -> stringPublic Shared Function ToHexStringLower (bytes As ReadOnlySpan(Of Byte)) As StringA span of 8-bit unsigned integers.
The string representation in hex of the elements inbytes.
bytes is too large to be encoded.
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 -> stringPublic Shared Function ToHexStringLower (inArray As Byte(), offset As Integer, length As Integer) As StringAn array of 8-bit unsigned integers.
An offset ininArray.
The number of elements ofinArray to convert.
The string representation in hex oflength elements ofinArray, starting at positionoffset.
inArray isnull.
offset orlength is negative.
-or-
offset +length is greater than the length ofinArray.
-or-
inArray is too large to be encoded.
Was this page helpful?
Need help with this topic?
Want to try using Ask Learn to clarify or guide you through this topic?
Was this page helpful?
Want to try using Ask Learn to clarify or guide you through this topic?