public UInt24(
byte[] value,
int startIndex
)Public Sub New (
value As Byte(),
startIndex As Integer
)public:
UInt24(
array<unsigned char>^ value,
int startIndex
)Gemstone.Numeric.UInt24 = function(value, startIndex);You can use this constructor 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 a UInt24. |