EndianBitConverter.ToDouble 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.3.420.0 (24.3.420.0)
Syntaxpublic 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:System.Byte[]
An array of bytes. - startIndex
- Type: System.Int32
The starting position within value.
Return Value
Type:
DoubleA double precision floating point number formed by eight bytes beginning at
startIndex.
See Also