A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://docs.microsoft.com/en-us/dotnet/api/system.convert.tohexstringlower below:

Convert.ToHexStringLower Method (System) | Microsoft Learn

Convert.ToHexStringLower Method Definition Overloads 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.

ToHexStringLower(Byte[])
Source:
Convert.cs
Source:
Convert.cs

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
Parameters
inArray
Byte[]

An array of 8-bit unsigned integers.

Returns

The string representation in hex of the elements in inArray.

Exceptions

inArray is too large to be encoded.

ToHexStringLower(ReadOnlySpan<Byte>)
Source:
Convert.cs
Source:
Convert.cs

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
Parameters Returns

The string representation in hex of the elements in bytes.

Exceptions

bytes is too large to be encoded.

ToHexStringLower(Byte[], Int32, Int32)
Source:
Convert.cs
Source:
Convert.cs

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
Parameters
inArray
Byte[]

An array of 8-bit unsigned integers.

offset
Int32

An offset in inArray.

length
Int32

The number of elements of inArray to convert.

Returns

The string representation in hex of length elements of inArray, starting at position offset.

Exceptions

offset or length is negative.

-or-

offset + length is greater than the length of inArray.

-or-

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 article

Was 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