  | LittleEndianBitConverterToInt64 Method | 
            Reads a 64-bit signed integer from the specified position in a byte array.
            
Namespace: Ookii.JumboAssembly: Ookii.Jumbo (in Ookii.Jumbo.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntaxpublic static long ToInt64(
	byte[] buffer,
	int offset
)
Public Shared Function ToInt64 ( 
	buffer As Byte(),
	offset As Integer
) As Long
public:
static long long ToInt64(
	array<unsigned char>^ buffer, 
	int offset
)
static member ToInt64 : 
        buffer : byte[] * 
        offset : int -> int64 Parameters
- buffer  Byte
 - An array of bytes.
 - offset  Int32
 - The starting position within buffer.
 
Return Value
Int64A 64-bit signed integer formed by eight bytes beginning at 
offset.
See Also