EndianBitConverterToInt64 Method |
Returns a 64-bit signed integer converted from eight bytes at a specified position in a byte 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 long ToInt64(
byte[] value,
int startIndex
)
Public Function ToInt64 (
value As Byte(),
startIndex As Integer
) As Long
public:
long long ToInt64(
array<unsigned char>^ value,
int startIndex
)
member ToInt64 :
value : byte[] *
startIndex : int -> int64
Parameters
- value
- Type: SystemByte
An array of bytes. - startIndex
- Type: SystemInt32
The starting position within value.
Return Value
Type:
Int64A 64-bit signed integer formed by eight bytes beginning at
startIndex.
See Also