EndianBitConverterFromDouble Method  | 
 
            Converts the specified double-precision floating point value and stores the bytes in the given array.
            
 
    Namespace: 
   AGI.Foundation.Infrastructure
    Assembly:
   AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic void FromDouble(
	double value,
	byte[] bytes,
	int startIndex
)
Public Sub FromDouble ( 
	value As Double,
	bytes As Byte(),
	startIndex As Integer
)
public:
void FromDouble(
	double value, 
	array<unsigned char>^ bytes, 
	int startIndex
)
member FromDouble : 
        value : float * 
        bytes : byte[] * 
        startIndex : int -> unit 
Parameters
- value
 - Type: SystemDouble
The number to convert. - bytes
 - Type: SystemByte
An array of bytes. - startIndex
 - Type: SystemInt32
The starting position within bytes. 
See Also