| LittleEndianBitConverterToDecimal Method |
Reads a decimal value 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 decimal ToDecimal(
byte[] buffer,
int offset
)
Public Shared Function ToDecimal (
buffer As Byte(),
offset As Integer
) As Decimal
public:
static Decimal ToDecimal(
array<unsigned char>^ buffer,
int offset
)
static member ToDecimal :
buffer : byte[] *
offset : int -> decimal
Parameters
- buffer
- Type: SystemByte
An array of bytes. - offset
- Type: SystemInt32
The starting position within buffer.
Return Value
Type:
DecimalA decimal value formed by sixteen bytes beginning at
offset.
See Also