NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

BitConverter.GetBytes (Double)

Converts a double-precision floating-point number into an array of unsigned bytes with length 8.

[Visual Basic]
Overloads Public Shared Function GetBytes( _
   ByVal value As Double _
) As Byte ()
[C#]
public static byte[] GetBytes(
   double value
);
[C++]
public: static unsigned char* GetBytes(
   double value
) [];
[JScript]
public static function GetBytes(
   value : double
) : Byte[];

Parameters

value
The number to be converted.

Return Value

An array of unsigned bytes with length 8.

See Also

BitConverter Class | BitConverter Members | System Namespace | BitConverter.GetBytes Overload List