How to get structure memory address?

Var abc as TestStruct

Var m as MemoryBlock = abc.StringValue(True)
Var p as Ptr = m
print str(p)

PS:Declare will translate the structure ptr automatically.

3 Likes