BigEndianToInt24(Byte*) Method
Returns a 24-bit signed integer converted from three bytes, accounting for target endian-order, at a specified position in a byte array.
Namespace: Gemstone.Numeric.Int24ExtensionsAssembly: Gemstone.Numeric (in Gemstone.Numeric.dll) Version: 1.0.136 -- Release Build+7cc579d922647b07681a489b376f23063582383a
public static Int24 ToInt24(
byte* buffer
)
Visual Basic does not support APIs that consume or return unsafe types.
public:
static Int24 ToInt24(
unsigned char* buffer
)
JavaScript does not support APIs that consume or return unsafe types.
- buffer Byte*
- An array of bytes (i.e., buffer containing binary image of value).
Int24A 24-bit signed integer formed by three bytes beginning at startIndex.
ArgumentNullException | value is null. |
ArgumentOutOfRangeException | startIndex is less than zero or greater than the length of value minus 1. |