MemoryBlock.Int64Value

From Xojo Documentation

Method

MemoryBlock.Int64Value(Offset as Integer) As Int64

New in 2005r5

Supported for all project types and targets.

Gets or sets an Int64 value. Offset is in bytes from the beginning of the MemoryBlock.

Sample Code

This example sets a 64-bit integer and then accesses it.

Var i As Int64
Var m As New MemoryBlock(8)
m.Int64value(0) = 256495900

i = m.Int64Value(0)