ArrayAddr Function

Purpose

Returns the memory address of an array

Syntax

x = ArrayAddr[(] array() [)]

x : avar

Description

ArrayAddr() returns the memory location of the first byte of the array data. (Not string array.)

Example

Debug.Show

Dim a|(100), b$(4)

Trace ArrayAddr(a|())

Trace V:a|(0)

b$(0) = "GFA"

Trace ArrayAddr b$()

Trace V:b$(0)

See Also

ArraySize()

{Created by Sjouke Hamstra; Last updated: 17/05/2017 by James Gaite}