|
Int24GetValue Method
|
Returns a 24-bit signed integer from three bytes at a specified position in a byte array.
Namespace: GSFAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.230-beta+03417d7b5cff037b24e882d7adef82d359b34964
Syntaxpublic static Int24 GetValue(
byte[] value,
int startIndex
)
Public Shared Function GetValue (
value As Byte(),
startIndex As Integer
) As Int24
static member GetValue :
value : byte[] *
startIndex : int -> Int24
GSF.Int24.GetValue = function(value, startIndex);
View SourceParameters
- value Byte
- An array of bytes.
- startIndex Int32
- The starting position within value.
Return Value
Int24A 24-bit signed integer formed by three bytes beginning at startIndex.
Exceptions
RemarksYou can use this function in-lieu of a System.BitConverter.ToInt24 function.
Bytes endian order assumed to match that of currently executing process architecture (little-endian on Intel platforms).
See Also