MemoryBlock.UInt64Value

From Xojo Documentation

Method

MemoryBlock.UInt64Value(Offset as Integer) As UInt64

New in 2005r5

Supported for all project types and targets.

Gets or sets a UInt64 value. Offset is in bytes from the beginning of the MemoryBlock.

Sample Code

This example sets a UInt64 in a MemoryBlock and then accesses it.

Var i As UInt64
Var m As New MemoryBlock(8)
m.UInt64Value(0) = 48000

i = m.UInt64Value(0)