EndianBitConverterFromInt16 Method |
Converts the specified 16-bit signed integer value and stores the bytes in the given array.
Namespace:
AGI.Foundation.Infrastructure
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public void FromInt16(
short value,
byte[] bytes,
int startIndex
)
Public Sub FromInt16 (
value As Short,
bytes As Byte(),
startIndex As Integer
)
public:
void FromInt16(
short value,
array<unsigned char>^ bytes,
int startIndex
)
member FromInt16 :
value : int16 *
bytes : byte[] *
startIndex : int -> unit
Parameters
- value
- Type: SystemInt16
The number to convert. - bytes
- Type: SystemByte
An array of bytes. - startIndex
- Type: SystemInt32
The starting position within bytes.
See Also