Converts a span of 8-bit unsigned integers to its equivalent string representation that is encoded with uppercase hex characters.
ToHexString(Byte[], Int32, Int32)Converts a subset of an array of 8-bit unsigned integers to its equivalent string representation that is encoded with uppercase hex characters. Parameters specify the subset as an offset in the input array and the number of elements in the array to convert.
ToHexString(Byte[])Converts an array of 8-bit unsigned integers to its equivalent string representation that is encoded with uppercase hex characters.
ToHexString(ReadOnlySpan<Byte>)Converts a span of 8-bit unsigned integers to its equivalent string representation that is encoded with uppercase hex characters.
public:
static System::String ^ ToHexString(ReadOnlySpan<System::Byte> bytes);
public static string ToHexString(ReadOnlySpan<byte> bytes);
static member ToHexString : ReadOnlySpan<byte> -> string
Public Shared Function ToHexString (bytes As ReadOnlySpan(Of Byte)) As String
Parameters Returns
The string representation in hex of the elements in bytes
.
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 uppercase 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 ^ ToHexString(cli::array <System::Byte> ^ inArray, int offset, int length);
public static string ToHexString(byte[] inArray, int offset, int length);
static member ToHexString : byte[] * int * int -> string
Public Shared Function ToHexString (inArray As Byte(), offset As Integer, length As Integer) As String
Parameters
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
.
offset
or length
is negative.
offset
plus length
is greater than the length of inArray
.
inArray
is too large to be encoded.
Converts an array of 8-bit unsigned integers to its equivalent string representation that is encoded with uppercase hex characters.
public:
static System::String ^ ToHexString(cli::array <System::Byte> ^ inArray);
public static string ToHexString(byte[] inArray);
static member ToHexString : byte[] -> string
Public Shared Function ToHexString (inArray As Byte()) As String
Parameters
An array of 8-bit unsigned integers.
ReturnsThe string representation in hex of the elements in inArray
.
inArray
is too large to be encoded.
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide. In this articleWas this page helpful?
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4