System::BitConverter::ToChar method

BitConverter::ToChar(const System::ArrayPtr<uint8_t>&, int) method

Converts two bytes from the specified array starting at the specified index to char_t value.

static char_t System::BitConverter::ToChar(const System::ArrayPtr<uint8_t> &value, int startIndex)
ParameterTypeDescription
valueconst System::ArrayPtr<uint8_t>&Array that contains bytes to convert
startIndexintIndex in the array at which to start taking bytes for conversion

ReturnValue

char_t value resulting from conversion

See Also

BitConverter::ToChar(const System::Details::ArrayView<uint8_t>&, int) method

Converts two bytes from the specified array starting at the specified index to char_t value.

static char_t System::BitConverter::ToChar(const System::Details::ArrayView<uint8_t> &value, int startIndex)
ParameterTypeDescription
valueconst System::Details::ArrayView<uint8_t>&ArrayView that contains bytes to convert
startIndexintIndex in the array at which to start taking bytes for conversion

ReturnValue

char_t value resulting from conversion

See Also