| LittleEndianBitConverterToInt32 Method |
Reads a 32-bit signed 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 int ToInt32(
byte[] buffer,
int offset
)
Public Shared Function ToInt32 (
buffer As Byte(),
offset As Integer
) As Integer
public:
static int ToInt32(
array<unsigned char>^ buffer,
int offset
)
static member ToInt32 :
buffer : byte[] *
offset : int -> int
Parameters
- buffer
- Type: SystemByte
An array of bytes. - offset
- Type: SystemInt32
The starting position within buffer.
Return Value
Type:
Int32A 32-bit signed integer formed by four bytes beginning at
offset.
See Also