public:
static UInt24 GetValue(
array<unsigned char>^ value,
int startIndex
)
Gemstone.Numeric.UInt24.GetValue = function(value, startIndex);
You can use this function in-lieu of a System.BitConverter.ToUInt24 function.
Bytes endian order assumed to match that of currently executing process architecture (little-endian on Intel platforms).
ArgumentNullException | value cannot be null. |
ArgumentOutOfRangeException | startIndex is greater than value length. |
ArgumentException | value length from startIndex is too small to represent an UInt24. |