ToDouble()

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

Converts eight bytes from the specified array starting at the specified index to double-precision floating point value.

static double System::BitConverter::ToDouble(const System::ArrayPtr<uint8_t> &value, int startIndex)

Arguments

ParameterTypeDescription
valueconst System::ArrayPtr<uint8_t>&Array that contains bytes to convert
startIndexintIndex in the array at which to start taking bytes for conversion

Return Value

Double-precision floating-point value resulting from conversion

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

Converts eight bytes from the specified array starting at the specified index to double-precision floating point value.

static double System::BitConverter::ToDouble(const System::Details::ArrayView<uint8_t> &value, int startIndex)

Arguments

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

Return Value

Double-precision floating-point value resulting from conversion

See Also