Overview
Zero all memory, this means all bytes in memory filled by Null.
(number) Address of Memory.
Nothing.
mem = Memory.Allocate(1024) Memory.PutString(mem, "Hi", -1, "Ascii") Dialog.Message("Before Zero Memory", Memory.GetString(mem, -1, "Ascii")) Memory.Zero(mem) Dialog.Message("After Zero Memory", Memory.GetString(mem, -1, "Ascii")) Memory.Free(mem)
See also: Related Actions