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 (UInt32)

Converts a 32-bit unsigned integer into an array of bytes with length 4.

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

Parameters

value
The number to be converted.

Return Value

An array of bytes with length 4.

See Also

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