ByteIListExtensions.GetInt64 Method
Overloads
| Name | Description |
|---|---|
| GetInt64(IList<Byte>, Int32) | Reads a little-endian Int64 from a list of bytes at the specified index. |
| GetInt64(IList<Byte>, Int32, Endian) | Reads a Int64 from a list of bytes at the specified index using the specified endianness. |
GetInt64(IList<Byte>, Int32)
Reads a little-endian Int64 from a list of bytes at the specified index.
public static long GetInt64(this IList<Byte> bytes, int index);
Parameters
| Name | Type | Description |
|---|---|---|
| bytes | IList<Byte> | |
| index | Int32 | The zero-based index to read from. |
Returns
The Int64 value.
GetInt64(IList<Byte>, Int32, Endian)
Reads a Int64 from a list of bytes at the specified index using the specified endianness.
public static long GetInt64(this IList<Byte> bytes, int index, Endian endian);
Parameters
| Name | Type | Description |
|---|---|---|
| bytes | IList<Byte> | |
| index | Int32 | The zero-based index to read from. |
| endian | Endian | The endianness to use. |
Returns
The Int64 value.