EndianBitConverterToDouble Method |
Returns a double-precision floating point number converted from eight bytes at a specified position in a byte array.
Namespace:
AGI.Foundation.Infrastructure
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public double ToDouble(
byte[] value,
int startIndex
)
Public Function ToDouble (
value As Byte(),
startIndex As Integer
) As Double
public:
double ToDouble(
array<unsigned char>^ value,
int startIndex
)
member ToDouble :
value : byte[] *
startIndex : int -> float
Parameters
- value
- Type: SystemByte
An array of bytes. - startIndex
- Type: SystemInt32
The starting position within value.
Return Value
Type:
DoubleA double precision floating point number formed by eight bytes beginning at
startIndex.
See Also