| LittleEndianBitConverterToUInt16 Method |
Reads a 16-bit unsigned integer from the specified position in a byte array.
Namespace:
Ookii.Jumbo
Assembly:
Ookii.Jumbo (in Ookii.Jumbo.dll) Version: 2.0.0
Syntax public static ushort ToUInt16(
byte[] buffer,
int offset
)
Public Shared Function ToUInt16 (
buffer As Byte(),
offset As Integer
) As UShort
public:
static unsigned short ToUInt16(
array<unsigned char>^ buffer,
int offset
)
static member ToUInt16 :
buffer : byte[] *
offset : int -> uint16
Parameters
- buffer
- Type: SystemByte
An array of bytes. - offset
- Type: SystemInt32
The starting position within buffer.
Return Value
Type:
UInt16A 16-bit unsigned integer formed by two bytes beginning at
offset.
See Also