AtalaInt128 Constructor (Byte, Int32) |
Creates a new instance of AtalaInt128 from an array of bytes.
Namespace:
Atalasoft.Imaging
Assembly:
Atalasoft.dotImage (in Atalasoft.dotImage.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax public AtalaInt128(
byte[] inData,
int inLen
)
Public Sub New (
inData As Byte(),
inLen As Integer
)
Parameters
- inData
- Type: SystemByte
The byte values.
The lowest index of the input byte array (i.e [0]) should contain the most significant byte of the number, and
the highest index should contain the least significant byte.
- inLen
- Type: SystemInt32
The number of bytes from the inData to use.
Exceptions Exception | Condition |
---|
| Thrown if the inLen is greater than the inData length or if inLen is greater than 4. |
See Also